def test_update_whereclause(self):
t1.update().where(t1.c.c2==12).compile()
- @profiling.function_call_count(195, versions={'2.4':118,
+ @profiling.function_call_count(195, versions={'2.4':112,
'3.0':208, '3.1':208})
def test_select(self):
s = select([t1], t1.c.c2==t2.c.c1)
metadata.drop_all()
@profiling.function_call_count(14416, versions={'2.4': 13214,
- '2.6+cextension': 390, '2.7+cextension':401})
+ '2.6+cextension': 410, '2.7+cextension':401})
def test_string(self):
[tuple(row) for row in t.select().execute().fetchall()]
@profiling.function_call_count(36, versions={'2.6':35, '2.5':35,
'2.4':21, '3':34},
- variance=.05)
+ variance=.10)
def go():
c.execute("select 1")
go()
def test_profile_2_insert(self):
self.test_baseline_2_insert()
- @profiling.function_call_count(3634, {'2.4': 2158})
+ @profiling.function_call_count(3886, {'2.4': 2158})
def test_profile_3_properties(self):
self.test_baseline_3_properties()