diff options
author | mike bayer <mike_mp@zzzcomputing.com> | 2020-09-12 16:26:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@bbpush.zzzcomputing.com> | 2020-09-12 16:26:39 +0000 |
commit | dad484e7fab006c5c951cd7e8134772d050ccff2 (patch) | |
tree | 47d176074999835f3f5820347e0fc357188a7444 /test/sql/test_functions.py | |
parent | f53e5fc7cb408f067d18e7f3eabf993bd1887063 (diff) | |
parent | 1d40a4ae159086b9ff6452a310d4cd57ef850813 (diff) | |
download | sqlalchemy-dad484e7fab006c5c951cd7e8134772d050ccff2.tar.gz |
Merge "Do not specify type on mssql by default"
Diffstat (limited to 'test/sql/test_functions.py')
-rw-r--r-- | test/sql/test_functions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sql/test_functions.py b/test/sql/test_functions.py index 717fc47af..73954a8af 100644 --- a/test/sql/test_functions.py +++ b/test/sql/test_functions.py @@ -971,7 +971,7 @@ class ExecuteTest(fixtures.TestBase): meta, Column( "id", - testing.db.dialect.sequence_default_column_type, + Integer, Sequence("t1idseq", optional=True), primary_key=True, ), @@ -982,7 +982,7 @@ class ExecuteTest(fixtures.TestBase): meta, Column( "id", - testing.db.dialect.sequence_default_column_type, + Integer, Sequence("t2idseq", optional=True), primary_key=True, ), |