[enhancement](jdbc catalog ) support postgresql partition table (#23744)

This commit is contained in:
zy-kkk
2023-09-03 10:52:01 +08:00
committed by GitHub
parent a74fe4acfd
commit a664bc5fca
5 changed files with 117 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public class JdbcPostgreSQLClient extends JdbcClient {
@Override
protected String[] getTableTypes() {
return new String[] {"TABLE", "VIEW", "MATERIALIZED VIEW", "FOREIGN TABLE"};
return new String[] {"TABLE", "PARTITIONED TABLE", "VIEW", "MATERIALIZED VIEW", "FOREIGN TABLE"};
}
@Override