empathy87 commented on code in PR #24659:
URL: https://github.com/apache/flink/pull/24659#discussion_r1584273004


##########
flink-formats/flink-orc/src/test/java/org/apache/flink/orc/OrcFileSystemITCase.java:
##########
@@ -208,6 +208,15 @@ void testOrcFilterPushDown() throws ExecutionException, 
InterruptedException {
                 Collections.singletonList(Row.of("x10", "10")));
     }
 
+    @TestTemplate
+    void testOrcFilterPushDownLiteralFirst() throws ExecutionException, 
InterruptedException {
+        super.tableEnv()
+                .executeSql("insert into orcLimitTable values('a', 10, 10), 
('b', 11, 11)")
+                .await();
+        check("select y from orcLimitTable where 10 >= y", 
Collections.singletonList(Row.of(10)));

Review Comment:
   Done



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

Reply via email to