summaryrefslogtreecommitdiff
path: root/test/aaa_profiling/test_compiler.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2011-02-09 15:45:15 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2011-02-09 15:45:15 -0500
commit3f30fb065c3b6baa8d7870bb0682d20ad37a62a2 (patch)
treebd7d8a4663131e60a84b94cf5758ab1a63db591a /test/aaa_profiling/test_compiler.py
parent34f26ee255bf64cf6de6fb9a5f1285b696fa4bbd (diff)
downloadsqlalchemy-3f30fb065c3b6baa8d7870bb0682d20ad37a62a2.tar.gz
- The compiler extension now supports overriding the default
compilation of expression._BindParamClause including that the auto-generated binds within the VALUES/SET clause of an insert()/update() statement will also use the new compilation rules. [ticket:2042]
Diffstat (limited to 'test/aaa_profiling/test_compiler.py')
-rw-r--r--test/aaa_profiling/test_compiler.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/aaa_profiling/test_compiler.py b/test/aaa_profiling/test_compiler.py
index 18d0118f1..697ab5952 100644
--- a/test/aaa_profiling/test_compiler.py
+++ b/test/aaa_profiling/test_compiler.py
@@ -32,12 +32,12 @@ class CompileTest(TestBase, AssertsExecutionResults):
cls.dialect = default.DefaultDialect()
- @profiling.function_call_count(versions={'2.7':58, '2.6':58,
- '3':64})
+ @profiling.function_call_count(versions={'2.7':62, '2.6':62,
+ '3':68})
def test_insert(self):
t1.insert().compile(dialect=self.dialect)
- @profiling.function_call_count(versions={'2.6':49, '2.7':49})
+ @profiling.function_call_count(versions={'2.6':53, '2.7':53})
def test_update(self):
t1.update().compile(dialect=self.dialect)