Add TODO in getTables

This commit is contained in:
김선우
2025-02-09 14:10:55 +09:00
parent 91e5ed8bb9
commit 8ec7b0b2be

View File

@@ -711,11 +711,12 @@ public class JDBC4DatabaseMetaData implements DatabaseMetaData {
@Override
@SkipNullableCheck
public ResultSet getTables(
String catalog, String schemaPattern, String tableNamePattern, String[] types)
@Nullable String catalog,
@Nullable String schemaPattern,
String tableNamePattern,
@Nullable String[] types)
throws SQLException {
// TODO - important
// TODO: after union is supported
return null;
}