Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0002016: On some platforms (sybase) sql fails when numeric column nam…
…es are used in the where clause of initial load sql
  • Loading branch information
chenson42 committed Oct 17, 2014
1 parent 6c4ad90 commit 4a651d3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -186,7 +186,7 @@ public String createInitalLoadSql(Node node, TriggerRouter triggerRouter, Table
columnList.append(columnExpression).append(" as ").append("x__").append(i);

} else {
columnList.append(" null as ").append("x__").append(i);
columnList.append(" '' as ").append("x__").append(i);
}
}
}
Expand Down

0 comments on commit 4a651d3

Please sign in to comment.