Skip to content

Commit

Permalink
0001339 - When using PayloadType.SQL Symmetric doesn't pay attention …
Browse files Browse the repository at this point in the history
…to target database catalog and schema rules. This issue has been fixed specifically for target schema of SQLite. Should be revisited for universal fix.
  • Loading branch information
gwilmer committed Jul 24, 2013
1 parent a4690cd commit e5addff
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -29,7 +29,7 @@ public class SqliteDmlStatement extends DmlStatement {
public SqliteDmlStatement(DmlType type, String catalogName, String schemaName, String tableName,
Column[] keysColumns, Column[] columns, boolean[] nullKeyValues,
DatabaseInfo databaseInfo, boolean useQuotedIdentifiers) {
super(type, catalogName, schemaName, tableName, keysColumns, columns,
super(type, catalogName, null, tableName, keysColumns, columns,
nullKeyValues, databaseInfo, useQuotedIdentifiers);
}

Expand Down

0 comments on commit e5addff

Please sign in to comment.