mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-04 06:48:27 -04:00
34 lines
943 B
Python
34 lines
943 B
Python
import testenv; testenv.configure_for_tests()
|
|
from sqlalchemy import *
|
|
from testlib import *
|
|
|
|
|
|
class CompileTest(TestBase, AssertsExecutionResults):
|
|
def setUpAll(self):
|
|
global t1, t2, metadata
|
|
metadata = MetaData()
|
|
t1 = Table('t1', metadata,
|
|
Column('c1', Integer, primary_key=True),
|
|
Column('c2', String(30)))
|
|
|
|
t2 = Table('t2', metadata,
|
|
Column('c1', Integer, primary_key=True),
|
|
Column('c2', String(30)))
|
|
|
|
@profiling.function_call_count(72, {'2.3': 44, '2.4': 46})
|
|
def test_insert(self):
|
|
t1.insert().compile()
|
|
|
|
@profiling.function_call_count(68, {'2.3': 47, '2.4': 42})
|
|
def test_update(self):
|
|
t1.update().compile()
|
|
|
|
@profiling.function_call_count(228, versions={'2.3': 153, '2.4':122})
|
|
def test_select(self):
|
|
s = select([t1], t1.c.c2==t2.c.c1)
|
|
s.compile()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
testenv.main()
|