Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ go
Method
go
test/sql/test_identity_column.py:278–283 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
276
277
def
test_identity_and_sequence(self):
278
def
go():
279
return
Table(
280
"foo_table"
,
281
MetaData(),
282
Column(
"foo"
, Integer(), Identity(), Sequence(
"foo_seq"
)),
283
)
284
285
assert_raises_message(
286
ArgumentError,
Callers
nothing calls this directly
Calls
6
Table
Class · 0.90
MetaData
Class · 0.90
Column
Class · 0.90
Integer
Class · 0.90
Identity
Class · 0.90
Sequence
Class · 0.90
Tested by
no test coverage detected