From: Mike Bayer Date: Sun, 4 Feb 2007 23:52:21 +0000 (+0000) Subject: make sure auto-reflection of remote tables working too... X-Git-Tag: rel_0_3_5~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffc7dbdae6072464322f5773d2f2586b071fa89a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git make sure auto-reflection of remote tables working too... --- diff --git a/test/engine/reflection.py b/test/engine/reflection.py index c77e15e284..7575e7a5da 100644 --- a/test/engine/reflection.py +++ b/test/engine/reflection.py @@ -512,8 +512,8 @@ class SchemaTest(PersistTest): meta1.create_all() try: meta2 = BoundMetaData(testbase.db) - users = Table('users', meta2, autoload = True, schema="test_schema") - addresses = Table('email_addresses', meta2, autoload = True, schema="test_schema") + addresses = Table('email_addresses', meta2, autoload=True, schema="test_schema") + users = Table('users', meta2, mustexist=True, schema="test_schema") print users print addresses