Skip to content

Commit

Permalink
SYMMETRICDS-130 - Additive Data Loader Filter should not _require_ bo…
Browse files Browse the repository at this point in the history
…th additive and override columns.
  • Loading branch information
mhanes committed Aug 10, 2009
1 parent 424fe44 commit 669a2d6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -120,7 +120,7 @@ protected boolean update(IDataLoaderContext context, String[] columnValues, Stri
protected String buildSetClause(IDataLoaderContext context, Object[] columnValues, List<Object> values) {
StringBuilder s = new StringBuilder();

if (overrideColumnNames != null && additiveColumnNames != null) {
if (overrideColumnNames != null || additiveColumnNames != null) {
s.append(" set ");

// Track the moment when we add our first name=value pair to the set
Expand Down

0 comments on commit 669a2d6

Please sign in to comment.