Skip to content

Commit

Permalink
Merge branch 'moqui:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Wei Zhang authored Jul 25, 2023
2 parents 4a89d8e + df07e4e commit 7e3e5ba
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class EntityDbMeta {
String schemaName = datasourceNode != null ? datasourceNode.attribute("schema-name") : null
Set<String> groupEntityNames = efi.getAllEntityNamesInGroup(groupName)

String[] types = ["TABLE", "VIEW", "ALIAS", "SYNONYM"]
String[] types = ["TABLE", "VIEW", "ALIAS", "SYNONYM", "PARTITIONED TABLE"]
Set<String> existingTableNames = new HashSet<>()

boolean beganTx = useTxForMetaData ? efi.ecfi.transactionFacade.begin(300) : false
Expand Down Expand Up @@ -458,7 +458,7 @@ class EntityDbMeta {
con = efi.getConnection(groupName)
DatabaseMetaData dbData = con.getMetaData()

String[] types = ["TABLE", "VIEW", "ALIAS", "SYNONYM"]
String[] types = ["TABLE", "VIEW", "ALIAS", "SYNONYM", "PARTITIONED TABLE"]
tableSet1 = dbData.getTables(con.getCatalog(), ed.getSchemaName(), ed.getTableName(), types)
if (tableSet1.next()) {
dbResult = true
Expand Down

0 comments on commit 7e3e5ba

Please sign in to comment.