MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / ctes_with_values

Method ctes_with_values

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

Source from the content-addressed store, hash-verified

806
807 @property
808 def ctes_with_values(self):
809 return only_on(
810 [
811 lambda config: against(config, "mysql")
812 and (
813 (
814 config.db.dialect._is_mariadb
815 and config.db.dialect.server_version_info >= (10, 2)
816 )
817 ),
818 "mariadb>10.2",
819 "postgresql",
820 "sqlite>=3.8.3",
821 ]
822 )
823
824 @property
825 def ctes_with_update_delete(self):

Callers

nothing calls this directly

Calls 2

only_onFunction · 0.90
againstFunction · 0.90

Tested by

no test coverage detected