summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/suite/test_ddl.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-09-30 18:23:21 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-09-30 18:23:21 -0400
commit502152de2a77d213489d9652f1779dffde1e6d7b (patch)
tree4c0fb75fb93775e83fc8b9b103ea85b3cc730dc5 /lib/sqlalchemy/testing/suite/test_ddl.py
parent061d5cfab13c1e9e5546248ea48178cafbebb7a5 (diff)
downloadsqlalchemy-502152de2a77d213489d9652f1779dffde1e6d7b.tar.gz
mssql: - [bug] Fixed bug where reflection of primary key constraint
would double up columns if the same constraint/table existed in multiple schemas. - force returns_rows to False for inserts where we know rows shouldnt be returned; allows post_exec() to use the cursor without issue
Diffstat (limited to 'lib/sqlalchemy/testing/suite/test_ddl.py')
-rw-r--r--lib/sqlalchemy/testing/suite/test_ddl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/suite/test_ddl.py b/lib/sqlalchemy/testing/suite/test_ddl.py
index 2bd2518bf..466429aa5 100644
--- a/lib/sqlalchemy/testing/suite/test_ddl.py
+++ b/lib/sqlalchemy/testing/suite/test_ddl.py
@@ -11,7 +11,7 @@ class TableDDLTest(fixtures.TestBase):
def _simple_fixture(self):
return Table('test_table', self.metadata,
- Column('id', Integer, primary_key=True),
+ Column('id', Integer, primary_key=True, autoincrement=False),
Column('data', String(50))
)