MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / t3

Method t3

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

Source from the content-addressed store, hash-verified

8238
8239 @testing.fixture
8240 def t3(self):
8241 m1 = MetaData()
8242
8243 t3 = Table(
8244 "t3",
8245 m1,
8246 Column("id", Integer, primary_key=True),
8247 Column("a", Integer),
8248 insert_sentinel("b"),
8249 Column("c", Integer, default="14", onupdate="19"),
8250 )
8251 return t3
8252
8253 def test_select_omitted(self, t1):
8254 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