diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-06-19 13:51:55 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-06-19 13:51:55 -0400 |
commit | 77c3bb26c29c491c1094427345ca51f309938572 (patch) | |
tree | e7e84e8da5c4268279d7ec10c48ff7c6dca65f69 /test/sql/test_query.py | |
parent | 6457901f968569bb4c09622cb4f9ba264eee41ec (diff) | |
download | sqlalchemy-77c3bb26c29c491c1094427345ca51f309938572.tar.gz |
- Firebird dialect adds CHAR, VARCHAR types which
accept a "charset" flag, to support Firebird
"CHARACTER SET" clause. [ticket:1813]
Diffstat (limited to 'test/sql/test_query.py')
-rw-r--r-- | test/sql/test_query.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sql/test_query.py b/test/sql/test_query.py index 5a4f03311..2b51d68a2 100644 --- a/test/sql/test_query.py +++ b/test/sql/test_query.py @@ -809,6 +809,7 @@ class QueryTest(TestBase): assert len(r) == 0 @testing.emits_warning('.*empty sequence.*') + @testing.fails_on('firebird', 'uses sql-92 bind rules') def test_literal_in(self): """similar to test_bind_in but use a bind with a value.""" |