diff options
author | Elkin <elkin@raketa.im> | 2020-02-05 09:51:14 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-02-07 10:15:10 -0500 |
commit | ab1799a2a1951fe8f188b6395fde04a233a3ac0d (patch) | |
tree | 9228479a408a8f47665ddd74c6ede3efa226c716 /test/dialect/mssql/test_compiler.py | |
parent | 226f25fdce33b1427807de7decc6e8d11f678c99 (diff) | |
download | sqlalchemy-ab1799a2a1951fe8f188b6395fde04a233a3ac0d.tar.gz |
MSSQL 2014 OFFSET/FETCH syntax support
SQL Server OFFSET and FETCH keywords are now used for limit/offset, rather
than using a window function, for SQL Server versions 11 and higher. TOP is
still used for a query that features only LIMIT. Pull request courtesy
Elkin.
Fixes: #5084
Closes: #5125
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/5125
Pull-request-sha: a45b7f73090d2053e3a7020d4e3d7fabb0c5627d
Change-Id: Id6a01ba30caac87d7d3d92c3903cdfd77fbcee5e
Diffstat (limited to 'test/dialect/mssql/test_compiler.py')
-rw-r--r-- | test/dialect/mssql/test_compiler.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/dialect/mssql/test_compiler.py b/test/dialect/mssql/test_compiler.py index bb5199b00..07ceb5bf5 100644 --- a/test/dialect/mssql/test_compiler.py +++ b/test/dialect/mssql/test_compiler.py @@ -844,6 +844,29 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): assert t.c.x in set(c._create_result_map()["x"][1]) assert t.c.y in set(c._create_result_map()["y"][1]) + def test_limit_offset_using_offset_fetch(self): + t = table("t", column("x", Integer), column("y", Integer)) + dialect_2012 = mssql.base.MSDialect() + dialect_2012._supports_offset_fetch = True + + s = select([t]).where(t.c.x == 5).order_by(t.c.y).limit(10).offset(20) + + self.assert_compile( + s, + "SELECT t.x, t.y " + "FROM t " + "WHERE t.x = :x_1 ORDER BY t.y " + "OFFSET :param_1 ROWS " + "FETCH NEXT :param_2 ROWS ONLY ", + checkparams={"param_1": 20, "param_2": 10, "x_1": 5}, + dialect=dialect_2012 + ) + + c = s.compile(dialect=dialect_2012) + eq_(len(c._result_columns), 2) + assert t.c.x in set(c._create_result_map()["x"][1]) + assert t.c.y in set(c._create_result_map()["y"][1]) + def test_limit_offset_w_ambiguous_cols(self): t = table("t", column("x", Integer), column("y", Integer)) |