Skip to content

Commit c442bcc

Browse files
committed
Added column tables to getTable
1 parent 61e3808 commit c442bcc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

jdbc/src/main/java/tech/ydb/jdbc/impl/YdbDatabaseMetaDataImpl.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1323,6 +1323,7 @@ private List<String> tables(String databasePrefix, String path, Predicate<String
13231323
String tablePath = fullPath.substring(databasePrefix.length());
13241324
switch (entry.getType()) {
13251325
case TABLE:
1326+
case COLUMN_TABLE:
13261327
if (filter.test(tablePath)) {
13271328
tables.add(tablePath);
13281329
}

0 commit comments

Comments
 (0)