Navigation Menu

Skip to content

Commit

Permalink
0001726: When trigger.update.capture.changed.data.only.enabled is ena…
Browse files Browse the repository at this point in the history
…bled on SQL Server and old data capture is off, updates don't work
  • Loading branch information
chenson42 committed May 21, 2014
1 parent 08c5107 commit f841ff5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -318,7 +318,7 @@ public boolean needsToSelectLobData() {

@Override
protected String getDbSpecificDataHasChangedCondition(Trigger trigger) {
return "@DataRow != @OldDataRow";
return "@OldDataRow is null or @DataRow != @OldDataRow";
}

}

0 comments on commit f841ff5

Please sign in to comment.