Skip to content

Commit

Permalink
0003212: Add NuoDB Dialect
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Aug 3, 2017
1 parent 740bba8 commit c0b7046
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -169,7 +169,7 @@ public String createInitalLoadSql(Node node, TriggerRouter triggerRouter, Table
}
sql = FormatUtils.replace("columns", columnsText, sql);
} else {
sql = "select $(schemaName)$(columns) from $(tableName) t where $(whereClause)";
sql = "select $(columns) from $(schemaName)$(tableName) t where $(whereClause)";
StringBuilder columnList = new StringBuilder();
for (int i = 0; i < columns.length; i++) {
Column column = columns[i];
Expand Down

0 comments on commit c0b7046

Please sign in to comment.