MCPcopy Index your code
hub / github.com/sqlalchemy/sqlalchemy / skip_xmin

Method skip_xmin

test/ext/test_compiler.py:60–64  ·  view source on GitHub ↗
(element, compiler, **kw)

Source from the content-addressed store, hash-verified

58 def test_create_column_skip(self):
59 @compiles(CreateColumn)
60 def skip_xmin(element, compiler, **kw):
61 if element.element.name == "xmin":
62 return None
63 else:
64 return compiler.visit_create_column(element, **kw)
65
66 t = Table(
67 "t",

Callers

nothing calls this directly

Calls 1

visit_create_columnMethod · 0.80

Tested by

no test coverage detected