tom-s-powell commented on code in PR #12692:
URL: https://github.com/apache/arrow/pull/12692#discussion_r881559943
##########
java/adapter/jdbc/src/test/java/org/apache/arrow/adapter/jdbc/Table.java:
##########
@@ -204,6 +219,11 @@ public void setRowCount(int rowCount) {
this.rowCount = rowCount;
}
+ @Override
+ public String toString() {
+ return "Table{name='" + name + "', type='" + type + "'}";
Review Comment:
Have added this for debugging purposes, helpful in the `ParameterizedTest`
to easily see which test file is failing. I updated the table names to match
the YML file name.
--
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]