vibhatha commented on code in PR #39188:
URL: https://github.com/apache/arrow/pull/39188#discussion_r1425235586


##########
java/adapter/jdbc/src/test/java/org/apache/arrow/adapter/jdbc/JdbcToArrowCommentMetadataTest.java:
##########
@@ -221,7 +221,7 @@ private String getTableComment(DatabaseMetaData metaData, 
String tableName) thro
   }
 
   private String getColumnComment(DatabaseMetaData metaData, String tableName, 
String columnName) throws SQLException {
-    try (ResultSet tableMetadata = metaData.getColumns("%", "%", tableName, 
columnName)) {
+    try (ResultSet tableMetadata = metaData.getColumns(null, null, tableName, 
columnName)) {

Review Comment:
   Reference: 
https://www.h2database.com/javadoc/org/h2/jdbc/JdbcDatabaseMetaData.html#getColumns-java.lang.String-java.lang.String-java.lang.String-java.lang.String-



-- 
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]

Reply via email to