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 aa99eaf commit 3040e42
Showing 1 changed file with 6 additions and 9 deletions.
Expand Up @@ -84,15 +84,12 @@ protected Table readTable(Connection connection, DatabaseMetaDataWrapper metaDat
*/
boolean tableHasBeenDeleted = isTableInRecycleBin(connection, values);

if (!tableHasBeenDeleted) {

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

if (!tableHasBeenDeleted && !"SYSTEM".equals(schema)) {

Table table = super.readTable(connection, metaData, values);
if (table != null) {
Expand Down

0 comments on commit 3040e42

Please sign in to comment.