rdblue commented on a change in pull request #3645:
URL: https://github.com/apache/iceberg/pull/3645#discussion_r772683126
##########
File path: api/src/test/java/org/apache/iceberg/expressions/TestEvaluator.java
##########
@@ -598,4 +600,18 @@ public void testNotInExceptions() {
"Invalid value for conversion to type int",
() -> new Evaluator(STRUCT, predicate(Expression.Operation.NOT_IN,
"x", 5.1)));
}
+
+ @Test
+ public void testStartsWith() {
+ Evaluator evaluator = new Evaluator(STRUCT, startsWith("str", "123"));
+ Assert.assertTrue(
+ "12345 startsWith 123 => true",
Review comment:
Can you fix the indentation here? Continuing indentation is 4 spaces,
not 8.
--
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]