rdblue commented on a change in pull request #650: Refactor in and notIn
expressions
URL: https://github.com/apache/incubator-iceberg/pull/650#discussion_r347165039
##########
File path: api/src/main/java/org/apache/iceberg/util/CharSequenceWrapper.java
##########
@@ -81,4 +81,9 @@ public char charAt(int index) {
public CharSequence subSequence(int start, int end) {
return wrapped.subSequence(start, end);
}
+
+ @Override
+ public String toString() {
+ return wrapped.toString();
Review comment:
This bug was flagged by my IDE. CharSequence requires overriding `toString`,
but the implementation was provided by `Object`.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]