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 16, 2014
1 parent 446bce6 commit 2a25fba
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -183,7 +183,7 @@ public String createInitalLoadSql(Node node, TriggerRouter triggerRouter, Table
}
}

columnList.append(columnExpression).append(" as ").append("col").append(i);
columnList.append(columnExpression).append(" as ").append("x__").append(i);

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

0 comments on commit 2a25fba

Please sign in to comment.