summaryrefslogtreecommitdiff
path: root/test/sql/test_labels.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/sql/test_labels.py')
-rw-r--r--test/sql/test_labels.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/sql/test_labels.py b/test/sql/test_labels.py
index ad4727b9b..7c65a1d01 100644
--- a/test/sql/test_labels.py
+++ b/test/sql/test_labels.py
@@ -5,6 +5,7 @@ from sqlalchemy import *
from sqlalchemy import exc as exceptions
from sqlalchemy.engine import default
from sqlalchemy.sql import table, column
+from test.lib.schema import Table, Column
IDENT_LENGTH = 29
@@ -26,13 +27,15 @@ class LongLabelsTest(fixtures.TablesTest, AssertsCompiledSQL):
def define_tables(cls, metadata):
table1 = Table("some_large_named_table", metadata,
Column("this_is_the_primarykey_column", Integer,
- primary_key=True),
+ primary_key=True,
+ test_needs_autoincrement=True),
Column("this_is_the_data_column", String(30))
)
table2 = Table("table_with_exactly_29_characs", metadata,
Column("this_is_the_primarykey_column", Integer,
- primary_key=True),
+ primary_key=True,
+ test_needs_autoincrement=True),
Column("this_is_the_data_column", String(30))
)
cls.tables.table1 = table1