MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / t3

Method t3

test/sql/test_compiler.py:8034–8045  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

8032
8033 @testing.fixture
8034 def t3(self):
8035 m1 = MetaData()
8036
8037 t3 = Table(
8038 "t3",
8039 m1,
8040 Column("id", Integer, primary_key=True),
8041 Column("a", Integer),
8042 insert_sentinel("b"),
8043 Column("c", Integer, default="14", onupdate="19"),
8044 )
8045 return t3
8046
8047 def test_select_omitted(self, t1):
8048 self.assert_compile(

Callers

nothing calls this directly

Calls 4

MetaDataClass · 0.90
TableClass · 0.90
ColumnClass · 0.90
insert_sentinelFunction · 0.90

Tested by

no test coverage detected