diff options
Diffstat (limited to 'test/perf/wsgi.py')
-rw-r--r-- | test/perf/wsgi.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/perf/wsgi.py b/test/perf/wsgi.py index 7068de1fd..365956dc7 100644 --- a/test/perf/wsgi.py +++ b/test/perf/wsgi.py @@ -10,10 +10,10 @@ logging.basicConfig() logging.getLogger('sqlalchemy.pool').setLevel(logging.INFO) threadids = set() -#meta = BoundMetaData('postgres://scott:tiger@127.0.0.1/test') +#meta = MetaData('postgres://scott:tiger@127.0.0.1/test') -#meta = BoundMetaData('mysql://scott:tiger@localhost/test', poolclass=pool.SingletonThreadPool) -meta = BoundMetaData('mysql://scott:tiger@localhost/test') +#meta = MetaData('mysql://scott:tiger@localhost/test', poolclass=pool.SingletonThreadPool) +meta = MetaData('mysql://scott:tiger@localhost/test') foo = Table('foo', meta, Column('id', Integer, primary_key=True), Column('data', String(30))) |