diff options
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/unicode.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/sql/unicode.py b/test/sql/unicode.py index 81b33865b..97493c3bb 100644 --- a/test/sql/unicode.py +++ b/test/sql/unicode.py @@ -112,8 +112,10 @@ class UnicodeSchemaTest(PersistTest): meta.drop_all() metadata.create_all() +class EscapesDefaultsTest(testing.PersistTest): @testing.fails_on_everything_except('postgres', 'firebird', 'oracle') def test_default_exec(self): + metadata = MetaData(testing.db) t1 = Table('t1', metadata, Column(u'special_col', Integer, Sequence('special_col'), primary_key=True)) t1.create() |
