]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
*more* tweaks to avoid DEFAULT VALUES on sqlite
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 4 Feb 2008 22:40:52 +0000 (22:40 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 4 Feb 2008 22:40:52 +0000 (22:40 +0000)
test/sql/unicode.py

index 6f035f2bfc4c9fb9a6536f2efc6137d1da05bd6a..54d4530257d901fc67c3cc0e6a686fe38717a67a 100644 (file)
@@ -133,7 +133,7 @@ class EscapesDefaultsTest(testing.PersistTest):
             # now execute, run the sequence.  it should run in u"Special_col.nextid" or similar as 
             # a unicode object; cx_oracle asserts that this is None or a String (postgres lets it pass thru).
             # ensure that base.DefaultRunner is encoding.
-            t1.insert().execute()
+            t1.insert().execute(data='foo')
         finally:
             t1.drop()