]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Added requirement to test for bind limit
authorScott Dugas <scott.dugas@foundationdb.com>
Thu, 23 Oct 2014 21:55:13 +0000 (17:55 -0400)
committerScott Dugas <scott.dugas@foundationdb.com>
Thu, 23 Oct 2014 21:55:13 +0000 (17:55 -0400)
test/orm/test_query.py

index 3f6813138247f413a8ce82949219c09ca5d71dca..1c5fca144062c02d47b19e519767c6a9e6b0dda9 100644 (file)
@@ -1553,6 +1553,7 @@ class FilterTest(QueryTest, AssertsCompiledSQL):
         assert [] == sess.query(User).order_by(User.id)[3:3]
         assert [] == sess.query(User).order_by(User.id)[0:0]
 
+    @testing.requires.bound_limit_offset
     def test_select_with_bindparam_offset_limit(self):
         """Does a query allow bindparam for the limit?"""
         User = self.classes.User