diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-03-17 02:15:09 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-03-17 02:15:09 +0000 |
commit | ecb5b87c19eeec41a0dc0d96af88454de17c6511 (patch) | |
tree | e563f259b927ca101578ede84a789c9506d0214e /test/tables.py | |
parent | 53527a8a07bf620d2ed440bf3c28c6f30a0cebaf (diff) | |
download | sqlalchemy-ecb5b87c19eeec41a0dc0d96af88454de17c6511.tar.gz |
refactor to engine to have a separate SQLSession object. allows nested transactions.
util.ThreadLocal __hasattr__ method/raise_error param meaningless, removed
renamed old engines test to reflection
Diffstat (limited to 'test/tables.py')
-rw-r--r-- | test/tables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tables.py b/test/tables.py index 927903e48..f1e1a845b 100644 --- a/test/tables.py +++ b/test/tables.py @@ -14,7 +14,7 @@ db = testbase.db users = Table('users', db, Column('user_id', Integer, Sequence('user_id_seq', optional=True), primary_key = True), Column('user_name', String(40)), - + mysql_engine='innodb' ) addresses = Table('email_addresses', db, |