mihaibudiu commented on code in PR #3826:
URL: https://github.com/apache/calcite/pull/3826#discussion_r1672617912
##########
core/src/main/java/org/apache/calcite/interpreter/Row.java:
##########
@@ -86,6 +86,8 @@ public static Row of(@Nullable Object...values) {
}
/** Returns a copy of the values. */
+ // Note: This implements BuildInMethod.ROW_COPY_VALUES.
+ @SuppressWarnings("unused")
Review Comment:
There are lots of methods like this in the code, which are called using
reflection.
I like the idea of using this annotation, but is there a guideline about
which annotations should be used and which ones shouldn't?
--
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]