def test_update_whereclause(self):
t1.update().where(t1.c.c2==12).compile(dialect=self.dialect)
- @profiling.function_call_count(versions={'2.4':105, '2.7':148, '2.6':148,
+ @profiling.function_call_count(versions={'2.7':148, '2.6':148,
'3.0':208, '3.1':208})
def test_select(self):
s = select([t1], t1.c.c2==t2.c.c1)
"""
__only_on__ = 'postgresql+psycopg2'
+ __skip_if__ = lambda : sys.version_info < (2, 5),
def test_baseline_0_setup(self):
global metadata
def test_profile_2_insert(self):
self.test_baseline_2_insert()
- @profiling.function_call_count(3340, {'2.4': 2158, '2.7':3564, '2.6':3564})
+ @profiling.function_call_count(3340, {'2.4': 2158, '2.7':3340, '2.6':3564})
def test_profile_3_properties(self):
self.test_baseline_3_properties()
"""
__only_on__ = 'postgresql+psycopg2'
- __skip_if__ = lambda : sys.version_info < (2, 5), # TODO: get 2.4
- # support
+ __skip_if__ = lambda : sys.version_info < (2, 5),
def test_baseline_0_setup(self):
global metadata, session