diff options
author | Federico Caselli <cfederico87@gmail.com> | 2021-03-30 23:15:04 +0200 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-03-31 22:13:30 -0400 |
commit | a357baec856bb73c511f8f8484d316f19a29252a (patch) | |
tree | bcc2f6c4da109191e93e74bfb5558d9ab09b8c7f /test/dialect/oracle/test_compiler.py | |
parent | 62e68beea671215e98cb939bb87af95d6d9f35ee (diff) | |
download | sqlalchemy-a357baec856bb73c511f8f8484d316f19a29252a.tar.gz |
Fix MSSQL / Oracle limit/offset regressions
Fixed a regression in MSSQL 2012+ that prevented the order clause
to be rendered when ``offset=0`` is used in a subquery.
Fixed critical regression where the Oracle compiler would not maintain the
correct parameter values in the LIMIT/OFFSET for a select due to a caching
issue.
Co-authored-by: Mike Bayer <mike_mp@zzzcomputing.com>
Fixes: #6163
Fixes: #6173
Change-Id: Ieb12354271d09ad935d684ee0db4fa0128837215
Diffstat (limited to 'test/dialect/oracle/test_compiler.py')
-rw-r--r-- | test/dialect/oracle/test_compiler.py | 62 |
1 files changed, 36 insertions, 26 deletions
diff --git a/test/dialect/oracle/test_compiler.py b/test/dialect/oracle/test_compiler.py index c8e0ff7ef..5e9f46e1a 100644 --- a/test/dialect/oracle/test_compiler.py +++ b/test/dialect/oracle/test_compiler.py @@ -163,9 +163,10 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "anon_2.col2 AS col2, ROWNUM AS ora_rn FROM (SELECT " "sometable.col1 AS col1, sometable.col2 AS " "col2 FROM sometable) anon_2 WHERE ROWNUM <= " - "[POSTCOMPILE_param_1]) anon_1 WHERE ora_rn > " + "[POSTCOMPILE_param_1] + [POSTCOMPILE_param_2]) anon_1 " + "WHERE ora_rn > " "[POSTCOMPILE_param_2]", - checkparams={"param_1": 30, "param_2": 20}, + checkparams={"param_1": 10, "param_2": 20}, ) c = s.compile(dialect=oracle.OracleDialect()) @@ -179,14 +180,15 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): self.assert_compile( s, "SELECT anon_1.col1, anon_1.col2 FROM " - "(SELECT /*+ FIRST_ROWS([POSTCOMPILE_ora_frow_1]) */ " + "(SELECT /*+ FIRST_ROWS([POSTCOMPILE_param_1]) */ " "anon_2.col1 AS col1, " "anon_2.col2 AS col2, ROWNUM AS ora_rn FROM (SELECT " "sometable.col1 AS col1, sometable.col2 AS " "col2 FROM sometable) anon_2 WHERE ROWNUM <= " - "[POSTCOMPILE_param_1]) anon_1 WHERE ora_rn > " + "[POSTCOMPILE_param_1] + [POSTCOMPILE_param_2]) anon_1 " + "WHERE ora_rn > " "[POSTCOMPILE_param_2]", - checkparams={"ora_frow_1": 10, "param_1": 30, "param_2": 20}, + checkparams={"param_1": 10, "param_2": 20}, dialect=oracle.OracleDialect(optimize_limits=True), ) @@ -204,9 +206,10 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "ROWNUM AS ora_rn " "FROM (SELECT sometable.col1 AS col1, " "sometable.col2 AS col2 FROM sometable) anon_3 " - "WHERE ROWNUM <= [POSTCOMPILE_param_1]) anon_2 " + "WHERE ROWNUM <= [POSTCOMPILE_param_1] + [POSTCOMPILE_param_2]) " + "anon_2 " "WHERE ora_rn > [POSTCOMPILE_param_2]) anon_1", - checkparams={"param_1": 30, "param_2": 20}, + checkparams={"param_1": 10, "param_2": 20}, ) self.assert_compile( @@ -218,7 +221,8 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "ROWNUM AS ora_rn " "FROM (SELECT sometable.col1 AS col1, " "sometable.col2 AS col2 FROM sometable) anon_3 " - "WHERE ROWNUM <= [POSTCOMPILE_param_1]) anon_2 " + "WHERE ROWNUM <= [POSTCOMPILE_param_1] + [POSTCOMPILE_param_2]) " + "anon_2 " "WHERE ora_rn > [POSTCOMPILE_param_2]) anon_1", ) c = s2.compile(dialect=oracle.OracleDialect()) @@ -237,9 +241,9 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "sometable.col1 AS col1, sometable.col2 AS " "col2 FROM sometable ORDER BY " "sometable.col2) anon_2 WHERE ROWNUM <= " - "[POSTCOMPILE_param_1]) anon_1 " + "[POSTCOMPILE_param_1] + [POSTCOMPILE_param_2]) anon_1 " "WHERE ora_rn > [POSTCOMPILE_param_2]", - checkparams={"param_1": 30, "param_2": 20}, + checkparams={"param_1": 10, "param_2": 20}, ) c = s.compile(dialect=oracle.OracleDialect()) eq_(len(c._result_columns), 2) @@ -265,13 +269,13 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): s = select(t).with_for_update().limit(10).order_by(t.c.col2) self.assert_compile( s, - "SELECT /*+ FIRST_ROWS([POSTCOMPILE_ora_frow_1]) */ " + "SELECT /*+ FIRST_ROWS([POSTCOMPILE_param_1]) */ " "anon_1.col1, anon_1.col2 FROM (SELECT " "sometable.col1 AS col1, sometable.col2 AS " "col2 FROM sometable ORDER BY " "sometable.col2) anon_1 WHERE ROWNUM <= [POSTCOMPILE_param_1] " "FOR UPDATE", - checkparams={"param_1": 10, "ora_frow_1": 10}, + checkparams={"param_1": 10}, dialect=oracle.OracleDialect(optimize_limits=True), ) @@ -287,10 +291,10 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "sometable.col1 AS col1, sometable.col2 AS " "col2 FROM sometable ORDER BY " "sometable.col2) anon_2 WHERE ROWNUM <= " - "[POSTCOMPILE_param_1]) anon_1 " + "[POSTCOMPILE_param_1] + [POSTCOMPILE_param_2]) anon_1 " "WHERE ora_rn > [POSTCOMPILE_param_2] FOR " "UPDATE", - checkparams={"param_1": 30, "param_2": 20}, + checkparams={"param_1": 10, "param_2": 20}, ) def test_limit_six(self): @@ -308,7 +312,7 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "col1, anon_2.col2 AS col2, ROWNUM AS ora_rn FROM " "(SELECT sometable.col1 AS col1, sometable.col2 AS col2 " "FROM sometable ORDER BY sometable.col2) anon_2 WHERE " - "ROWNUM <= :param_1 + :param_2 + :param_3) anon_1 " + "ROWNUM <= [POSTCOMPILE_param_1] + :param_2 + :param_3) anon_1 " "WHERE ora_rn > :param_2 + :param_3", checkparams={"param_1": 10, "param_2": 10, "param_3": 20}, ) @@ -512,10 +516,11 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "ROWNUM AS ora_rn " "FROM (SELECT mytable.myid AS myid, mytable.name AS name " "FROM mytable WHERE mytable.myid = :myid_1) anon_2 " - "WHERE ROWNUM <= [POSTCOMPILE_param_1]) anon_1 " + "WHERE ROWNUM <= [POSTCOMPILE_param_1] + [POSTCOMPILE_param_2]) " + "anon_1 " "WHERE ora_rn > [POSTCOMPILE_param_2] " "FOR UPDATE OF anon_1.name NOWAIT", - checkparams={"param_1": 60, "param_2": 50, "myid_1": 7}, + checkparams={"param_1": 10, "param_2": 50, "myid_1": 7}, ) def test_for_update_of_w_limit_offset_adaption_col_unpresent(self): @@ -531,10 +536,11 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "ROWNUM AS ora_rn, anon_2.name AS name " "FROM (SELECT mytable.myid AS myid, mytable.name AS name " "FROM mytable WHERE mytable.myid = :myid_1) anon_2 " - "WHERE ROWNUM <= [POSTCOMPILE_param_1]) anon_1 " + "WHERE " + "ROWNUM <= [POSTCOMPILE_param_1] + [POSTCOMPILE_param_2]) anon_1 " "WHERE ora_rn > [POSTCOMPILE_param_2] " "FOR UPDATE OF anon_1.name NOWAIT", - checkparams={"param_1": 60, "param_2": 50, "myid_1": 7}, + checkparams={"param_1": 10, "param_2": 50, "myid_1": 7}, ) def test_for_update_of_w_limit_offset_adaption_partial_col_unpresent(self): @@ -552,10 +558,11 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "mytable.bar AS bar, " "mytable.foo AS foo FROM mytable " "WHERE mytable.myid = :myid_1) anon_2 " - "WHERE ROWNUM <= [POSTCOMPILE_param_1]) anon_1 " + "WHERE ROWNUM <= [POSTCOMPILE_param_1] + [POSTCOMPILE_param_2]) " + "anon_1 " "WHERE ora_rn > [POSTCOMPILE_param_2] " "FOR UPDATE OF anon_1.foo, anon_1.bar NOWAIT", - checkparams={"param_1": 60, "param_2": 50, "myid_1": 7}, + checkparams={"param_1": 10, "param_2": 50, "myid_1": 7}, ) def test_limit_preserves_typing_information(self): @@ -616,7 +623,8 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "anon_2.col1 AS col1, anon_2.col2 AS col2, ROWNUM AS ora_rn " "FROM (SELECT sometable.col1 AS col1, sometable.col2 AS col2 " "FROM sometable) anon_2 " - "WHERE ROWNUM <= [POSTCOMPILE_param_1]) anon_1 " + "WHERE ROWNUM <= [POSTCOMPILE_param_1] + " + "[POSTCOMPILE_param_2]) anon_1 " "WHERE ora_rn > [POSTCOMPILE_param_2]", dialect=dialect, ) @@ -672,10 +680,11 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "ROWNUM AS ora_rn " "FROM (SELECT sometable.col1 AS col1, sometable.col2 AS col2 " "FROM sometable) anon_2 " - "WHERE ROWNUM <= [POSTCOMPILE_param_1]) anon_1 " + "WHERE ROWNUM <= [POSTCOMPILE_param_1] + " + "[POSTCOMPILE_param_2]) anon_1 " "WHERE ora_rn > [POSTCOMPILE_param_2]", dialect=dialect, - checkparams={"param_1": 20, "param_2": 10}, + checkparams={"param_1": 10, "param_2": 10}, ) def test_long_labels_legacy_ident_length(self): @@ -875,9 +884,10 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "thirdtable.userid(+) = " "myothertable.otherid AND mytable.myid = " "myothertable.otherid ORDER BY mytable.name) anon_2 " - "WHERE ROWNUM <= [POSTCOMPILE_param_1]) anon_1 " + "WHERE ROWNUM <= [POSTCOMPILE_param_1] + [POSTCOMPILE_param_2]) " + "anon_1 " "WHERE ora_rn > [POSTCOMPILE_param_2]", - checkparams={"param_1": 15, "param_2": 5}, + checkparams={"param_1": 10, "param_2": 5}, dialect=oracle.dialect(use_ansi=False), ) |