Skip to content

Commit

Permalink
Fix BaseConnectorTest.testMultipleRangesPredicate
Browse files Browse the repository at this point in the history
  • Loading branch information
ebyhr committed Jul 22, 2024
1 parent 4278307 commit c3ee39a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ public void testMultipleRangesPredicate()
assertQuery("" +
"SELECT orderkey, custkey, orderstatus, totalprice, orderdate, orderpriority, clerk, shippriority, comment " +
"FROM orders " +
"WHERE orderkey BETWEEN 10 AND 50");
"WHERE orderkey BETWEEN 10 AND 50 OR orderkey BETWEEN 100 AND 150");
}

@Test
Expand Down

0 comments on commit c3ee39a

Please sign in to comment.