Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
dzamo has noticed that the following test case will fail
@Test public void testLimitPushDownWithOffset() throws Exception { String query = "select person_id, first_name from mssql.dbo.person limit 100 offset 10"; queryBuilder() .sql(query) .planMatcher() .include("Jdbc\\(.*SELECT TOP \\(110\\)") .include("Limit\\(") .match(); }
because the limit wasn't pushed down.