diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-05 14:56:26 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-05 14:56:26 -0500 |
| commit | f1e54a69fb9b07a73bd8488110b1ceace168a50a (patch) | |
| tree | 9ffef9bc95b2015877f5dcfa63fb6574a87ca15e /test/perf | |
| parent | 77763969ff06b12edcbaedab62890afa27e105b4 (diff) | |
| parent | 926b0d7fa860abee8b34236148fa34a6666700a9 (diff) | |
| download | sqlalchemy-f1e54a69fb9b07a73bd8488110b1ceace168a50a.tar.gz | |
- merge default tip
Diffstat (limited to 'test/perf')
| -rw-r--r-- | test/perf/insertspeed.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/perf/insertspeed.py b/test/perf/insertspeed.py index 3ae1ccbde..9b397771d 100644 --- a/test/perf/insertspeed.py +++ b/test/perf/insertspeed.py @@ -1,4 +1,3 @@ -import testenv; testenv.simple_setup() import sys, time from sqlalchemy import * from sqlalchemy.orm import * @@ -87,7 +86,7 @@ def all(): run_profiled(sa_profiled_insert_many, 'SQLAlchemy bulk insert/select, profiled', - 1000) + 50000) print "\nIndividual INSERTS via execute():\n" @@ -101,7 +100,7 @@ def all(): run_profiled(sa_profiled_insert, 'SQLAlchemy individual insert/select, profiled', - 1000) + 50000) finally: metadata.drop_all() |
