diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2022-06-29 17:41:16 +0000 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci3.zzzcomputing.com> | 2022-06-29 17:41:16 +0000 |
| commit | b35bbdb13be9a359fc3cfae00e2b6fdca63dea29 (patch) | |
| tree | 372ff30a2093cab38dd0797dd6cb60513f025e59 /test | |
| parent | 4270b26afc7d26ec5324b455e02282bea3b96c03 (diff) | |
| parent | f848140083c316b81456c8c3426ad3fd04caf6fa (diff) | |
| download | sqlalchemy-b35bbdb13be9a359fc3cfae00e2b6fdca63dea29.tar.gz | |
Merge "Change setinputsizes behavior for mssql+pyodbc" into main
Diffstat (limited to 'test')
| -rw-r--r-- | test/dialect/mssql/test_engine.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/test/dialect/mssql/test_engine.py b/test/dialect/mssql/test_engine.py index 296820539..967ca85fe 100644 --- a/test/dialect/mssql/test_engine.py +++ b/test/dialect/mssql/test_engine.py @@ -474,11 +474,10 @@ class FastExecutemanyTest(fixtures.TestBase): use_fastexecutemany, apply_setinputsizes_flag, ): - expect_failure = ( - apply_setinputsizes_flag - and not include_setinputsizes - and use_fastexecutemany - ) + + # changes for issue #8177 have eliminated all current expected + # failures, but we'll leave this here in case we need it again + expect_failure = False engine = fe_engine(use_fastexecutemany, apply_setinputsizes_flag) |
