From: Mike Bayer Date: Mon, 4 Feb 2008 22:40:52 +0000 (+0000) Subject: *more* tweaks to avoid DEFAULT VALUES on sqlite X-Git-Tag: rel_0_4_3~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c73fbb4227327335be8f45f4dbf2bccd01d0918;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git *more* tweaks to avoid DEFAULT VALUES on sqlite --- diff --git a/test/sql/unicode.py b/test/sql/unicode.py index 6f035f2bfc..54d4530257 100644 --- a/test/sql/unicode.py +++ b/test/sql/unicode.py @@ -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()