Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/sqlalchemy/sqlalchemy
/ go
Method
go
test/sql/test_identity_column.py:298–303 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
296
297
def
test_identity_and_sequence(self):
298
def
go():
299
return
Table(
300
"foo_table"
,
301
MetaData(),
302
Column(
"foo"
, Integer(), Identity(), Sequence(
"foo_seq"
)),
303
)
304
305
assert_raises_message(
306
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