MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / computed_columns

Method computed_columns

test/requirements.py:2074–2083  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2072
2073 @property
2074 def computed_columns(self):
2075 return (
2076 skip_if("postgresql < 12")
2077 + warns_if(
2078 "postgresql < 18",
2079 r".*PostgreSQL version does not support VIRTUAL",
2080 assert_=False,
2081 )
2082 + skip_if(["sqlite < 3.31", "mysql < 5.7"])
2083 )
2084
2085 @property
2086 def python_profiling_backend(self):

Callers

nothing calls this directly

Calls 2

skip_ifFunction · 0.90
warns_ifFunction · 0.90

Tested by

no test coverage detected