adelapena commented on code in PR #2193:
URL: https://github.com/apache/cassandra/pull/2193#discussion_r1146513581


##########
src/java/org/apache/cassandra/cql3/functions/masking/ColumnMask.java:
##########
@@ -93,6 +94,14 @@ public List<AbstractType<?>> partialArgumentTypes()
                : argTypes.subList(1, argTypes.size());
     }
 
+    /**
+     * @return The values of the arguments of the partially applied masking 
function.
+     */
+    public List<ByteBuffer> partialArgumentValues()
+    {
+        return Arrays.asList(partialArgumentValues);

Review Comment:
   Actually not properly done, I was using Guava's immutable list, that doesn't 
support null arguments. Changed to Java's `Collections.unmodifiableList`, which 
perfectly supports null arguments.



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to