diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-10-07 16:12:30 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-10-07 16:13:20 -0400 |
| commit | 2ba70aba90c69152641b2cce838b3afa35c8586c (patch) | |
| tree | 05eb03ea3b8c13141af7095efad4214dff127262 /test/sql | |
| parent | 744ef5382b80ce98294d621234141228c205825c (diff) | |
| download | sqlalchemy-2ba70aba90c69152641b2cce838b3afa35c8586c.tar.gz | |
Fix max_identifier_length for SQL server
Fixed bug in SQL Server dialect with new "max_identifier_length" feature
where the mssql dialect already featured this flag, and the implementation
did not accommodate for the new initialization hook correctly.
Fixes: #4857
Change-Id: I96a9c6ca9549d8f6fb167c0333f684e8d922a3bf
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/test_labels.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sql/test_labels.py b/test/sql/test_labels.py index e953e71a1..e45895817 100644 --- a/test/sql/test_labels.py +++ b/test/sql/test_labels.py @@ -33,6 +33,7 @@ IDENT_LENGTH = 29 class MaxIdentTest(fixtures.TestBase, AssertsCompiledSQL): __dialect__ = "DefaultDialect" + __backend__ = True table1 = table( "some_large_named_table", |
