lowka commented on code in PR #6965:
URL: https://github.com/apache/ignite-3/pull/6965#discussion_r2527826976
##########
modules/jdbc/src/main/java/org/apache/ignite/internal/jdbc/JdbcDatabaseMetadata.java:
##########
@@ -986,45 +994,45 @@ public ResultSet getCatalogs() throws SQLException {
public ResultSet getTableTypes() throws SQLException {
ensureNotClosed();
- return new JdbcResultSet(
+ return createObjectListResultSet(
asList(List.of(TYPE_TABLE, TYPE_VIEW)),
Review Comment:
There is a bug here - it returns a row with a single column [TYPE_TABLE,
TYPE_VIEW)] instead of two rows [TYPE_TABLE], [TYPE_VIEW]
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]