Skip to content

Commit

Permalink
0001203: SymmetricDS cannot operate on Oracle tables with dollar sign…
Browse files Browse the repository at this point in the history
… in name
  • Loading branch information
chenson42 committed Jun 12, 2013
1 parent 6ef9a35 commit aa99eaf
Showing 1 changed file with 6 additions and 4 deletions.
Expand Up @@ -85,10 +85,12 @@ protected Table readTable(Connection connection, DatabaseMetaDataWrapper metaDat
boolean tableHasBeenDeleted = isTableInRecycleBin(connection, values);

if (!tableHasBeenDeleted) {
String tableName = (String) values.get("TABLE_NAME");

// system table ?
if (tableName.indexOf('$') > 0) {

/*
* System tables are in the system schema
*/
String schema = (String) values.get(getResultSetSchemaName());
if ("SYSTEM".equals(schema)) {
return null;
}

Expand Down

0 comments on commit aa99eaf

Please sign in to comment.