summaryrefslogtreecommitdiff
path: root/test/tables.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2005-12-17 19:35:00 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2005-12-17 19:35:00 +0000
commit3e4b0d17a9f4d9dd1ba293dac3e0966f7b80f69c (patch)
tree953cff80b200be69ddd298b09ade153e65ddf5eb /test/tables.py
parentd51d1ccaacf083fd0c9e38b35ef1ba32e36f35a3 (diff)
downloadsqlalchemy-3e4b0d17a9f4d9dd1ba293dac3e0966f7b80f69c.tar.gz
fix to oracle function select, users table in test should be non-sequence
Diffstat (limited to 'test/tables.py')
-rw-r--r--test/tables.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tables.py b/test/tables.py
index 807ecf764..d0d069248 100644
--- a/test/tables.py
+++ b/test/tables.py
@@ -12,7 +12,7 @@ db = testbase.db
users = Table('users', db,
- Column('user_id', Integer, Sequence('user_id_seq', optional=False), primary_key = True),
+ Column('user_id', Integer, Sequence('user_id_seq', optional=True), primary_key = True),
Column('user_name', String(40)),
)