diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-19 18:52:46 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-19 18:52:46 -0500 |
| commit | 840fefa710717f641f2637d3dbd621777d037a89 (patch) | |
| tree | aadd7c818f85540ad4497eb6c4bea1c8cde8bb26 /test/aaa_profiling/test_resultset.py | |
| parent | 99b91647e996630d778df89c08ca909a6194182b (diff) | |
| download | sqlalchemy-840fefa710717f641f2637d3dbd621777d037a89.tar.gz | |
- callcounts
Diffstat (limited to 'test/aaa_profiling/test_resultset.py')
| -rw-r--r-- | test/aaa_profiling/test_resultset.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/aaa_profiling/test_resultset.py b/test/aaa_profiling/test_resultset.py index 8fafda5af..d7f2beeb4 100644 --- a/test/aaa_profiling/test_resultset.py +++ b/test/aaa_profiling/test_resultset.py @@ -25,7 +25,11 @@ class ResultSetTest(TestBase, AssertsExecutionResults): t2.insert().execute([dict(('field%d' % fnum, u'value%d' % fnum) for fnum in range(NUM_FIELDS)) for r_num in range(NUM_RECORDS)]) - + + # warm up type caches + t.select().execute().fetchall() + t2.select().execute().fetchall() + def teardown(self): metadata.drop_all() |
