diff options
Diffstat (limited to 'test/sql/unicode.py')
| -rw-r--r-- | test/sql/unicode.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/sql/unicode.py b/test/sql/unicode.py index 98a2b6aa2..6f035f2bf 100644 --- a/test/sql/unicode.py +++ b/test/sql/unicode.py @@ -116,7 +116,9 @@ class EscapesDefaultsTest(testing.PersistTest): def test_default_exec(self): metadata = MetaData(testing.db) t1 = Table('t1', metadata, - Column(u'special_col', Integer, Sequence('special_col'), primary_key=True)) + Column(u'special_col', Integer, Sequence('special_col'), primary_key=True), + Column('data', String(50)) # to appease SQLite without DEFAULT VALUES + ) t1.create() try: |
