summaryrefslogtreecommitdiff
path: root/test/dialect/test_mysql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-12-06 18:45:19 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2010-12-06 18:45:19 -0500
commit83be34c047ca6caf484c7aaaefe58fb078b3e81d (patch)
tree861f3026863fccd7517252ff0d928f0e12974eba /test/dialect/test_mysql.py
parent987828194ee571c39ed461a9233191d968e4f4c7 (diff)
downloadsqlalchemy-83be34c047ca6caf484c7aaaefe58fb078b3e81d.tar.gz
- hardwire the huge LIMIT number on MySQL. this might fix the OurSQL py3k
bug we're having, though I'm not able to get a good run of OurSQL on OSX right now either Python 2 or 3.
Diffstat (limited to 'test/dialect/test_mysql.py')
-rw-r--r--test/dialect/test_mysql.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/dialect/test_mysql.py b/test/dialect/test_mysql.py
index 7b06f412a..02b888fed 100644
--- a/test/dialect/test_mysql.py
+++ b/test/dialect/test_mysql.py
@@ -1073,8 +1073,8 @@ class SQLTest(TestBase, AssertsCompiledSQL):
self.assert_compile(
select([t]).offset(10),
- "SELECT t.col1, t.col2 FROM t LIMIT %s, %s",
- {'param_1':10, 'param_2':18446744073709551615}
+ "SELECT t.col1, t.col2 FROM t LIMIT %s, 18446744073709551615",
+ {'param_1':10}
)
def test_varchar_raise(self):