]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
2.4 callcounts of course go up for no apparent reason
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 23 Oct 2008 02:39:52 +0000 (02:39 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 23 Oct 2008 02:39:52 +0000 (02:39 +0000)
test/profiling/compiler.py
test/profiling/zoomark.py

index 9a0981498735794ebaaaea9ce7eb5b0fdd49804b..501f8878d17f5840d2c25734e254db3b5f8ccf30 100644 (file)
@@ -23,7 +23,7 @@ class CompileTest(TestBase, AssertsExecutionResults):
     def test_update(self):
         t1.update().compile()
 
-    @profiling.function_call_count(211, versions={'2.4':131})
+    @profiling.function_call_count(211, versions={'2.4':141})
     def test_select(self):
         s = select([t1], t1.c.c2==t2.c.c1)
         s.compile()
index f73a7882a8fbc2d2503c1a5daab7e158b145f008..6cf0771c4d0289b07c08775d361ee636563020ef 100644 (file)
@@ -328,7 +328,7 @@ class ZooMarkTest(TestBase):
     def test_profile_1a_populate(self):
         self.test_baseline_1a_populate()
 
-    @profiling.function_call_count(322, {'2.4': 213})
+    @profiling.function_call_count(322, {'2.4': 202})
     def test_profile_2_insert(self):
         self.test_baseline_2_insert()
 
@@ -340,7 +340,7 @@ class ZooMarkTest(TestBase):
     def test_profile_4_expressions(self):
         self.test_baseline_4_expressions()
 
-    @profiling.function_call_count(1523, {'2.4': 1032})
+    @profiling.function_call_count(1523, {'2.4': 1084})
     def test_profile_5_aggregates(self):
         self.test_baseline_5_aggregates()