diff options
| author | Michael Trier <mtrier@gmail.com> | 2008-12-28 21:07:57 +0000 |
|---|---|---|
| committer | Michael Trier <mtrier@gmail.com> | 2008-12-28 21:07:57 +0000 |
| commit | 8669eda82dcc84b726ab420106dfea86fc8a066f (patch) | |
| tree | 840ddf45cbb376ee6753e1a7f278d471cf869d9b /test/sql | |
| parent | 7009653aa1c53d1f761501522d55617d3fdcc57c (diff) | |
| download | sqlalchemy-8669eda82dcc84b726ab420106dfea86fc8a066f.tar.gz | |
Added in a new MSGenericBinary type.
This maps to the Binary type so it can implement the specialized behavior of
treating length specified types as fixed-width Binary types and non-length
types as an unbound variable length Binary type.
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/testtypes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sql/testtypes.py b/test/sql/testtypes.py index d7fa5987c..ef4a355d3 100644 --- a/test/sql/testtypes.py +++ b/test/sql/testtypes.py @@ -433,6 +433,7 @@ class BinaryTest(TestBase, AssertsExecutionResults): def tearDownAll(self): binary_table.drop() + @testing.fails_on('mssql', 'MSSQl BINARY type right pads the fixed length with \x00') def testbinary(self): testobj1 = pickleable.Foo('im foo 1') testobj2 = pickleable.Foo('im foo 2') |
