diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-07-20 11:09:04 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-07-20 11:09:04 -0400 |
commit | 1ae69566ccbcf5faa0d760d3fc03e85262a69122 (patch) | |
tree | 95fc01652b2ecc1b728e8beb6db90e8954293864 /test/dialect/test_postgresql.py | |
parent | b2d50f2807da38a4a0ecefc1a88ed4ab19e0e41c (diff) | |
download | sqlalchemy-1ae69566ccbcf5faa0d760d3fc03e85262a69122.tar.gz |
fix keyword error
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r-- | test/dialect/test_postgresql.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py index 4dffa0415..97221449e 100644 --- a/test/dialect/test_postgresql.py +++ b/test/dialect/test_postgresql.py @@ -156,7 +156,7 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): m = MetaData() tbl = Table('testtbl', m, Column('data', String), - Column('data2', key='d2', Integer)) + Column('data2', Integer, key='d2')) idx = Index('test_idx1', tbl.c.data, postgresql_ops={'data': 'text_pattern_ops'}) |