summaryrefslogtreecommitdiff
path: root/test/engine/reflection.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-08-10 18:07:46 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-08-10 18:07:46 +0000
commit219bcf8cb17bdfeb526c72b29ec8ece5127f6c98 (patch)
tree699b1789f343c82c5c17431b28f48ddce1a5ef28 /test/engine/reflection.py
parent8c3607b0410592b11822b599d3fdc8c7f464944a (diff)
downloadsqlalchemy-219bcf8cb17bdfeb526c72b29ec8ece5127f6c98.tar.gz
- fixes to PG unicode table/sequence reflection/create/drops
Diffstat (limited to 'test/engine/reflection.py')
-rw-r--r--test/engine/reflection.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/engine/reflection.py b/test/engine/reflection.py
index de7943f46..a704b6df1 100644
--- a/test/engine/reflection.py
+++ b/test/engine/reflection.py
@@ -645,7 +645,7 @@ class UnicodeTest(PersistTest):
names = set([u'plain', u'Unit\u00e9ble', u'\u6e2c\u8a66'])
for name in names:
- Table(name, metadata, Column('id', Integer, primary_key=True))
+ Table(name, metadata, Column('id', Integer, Sequence(name + "_id_seq"), primary_key=True))
metadata.create_all()
reflected = set(bind.table_names())