Navigation Menu

Skip to content

Commit

Permalink
0004018: User table creation fails when table exists in another user's
Browse files Browse the repository at this point in the history
schema
  • Loading branch information
erilong committed Jun 19, 2019
1 parent c4b7fa3 commit e422471
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -958,6 +958,12 @@ public void makePlatformSpecific(Database database) {
autoIncrementColumn.setAutoIncrement(false);
}
}
if (table.getCatalog() == null) {
table.setCatalog(getDefaultCatalog());
}
if (table.getSchema() == null) {
table.setSchema(getDefaultSchema());
}
}
}

Expand Down

0 comments on commit e422471

Please sign in to comment.