MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / ctes_on_dml

Method ctes_on_dml

test/requirements.py:840–844  ·  view source on GitHub ↗

target database supports CTES which consist of INSERT, UPDATE or DELETE *within* the CTE, e.g. WITH x AS (UPDATE....)

(self)

Source from the content-addressed store, hash-verified

838
839 @property
840 def ctes_on_dml(self):
841 """target database supports CTES which consist of INSERT, UPDATE
842 or DELETE *within* the CTE, e.g. WITH x AS (UPDATE....)"""
843
844 return only_if(["postgresql"])
845
846 @property
847 def mod_operator_as_percent_sign(self):

Callers

nothing calls this directly

Calls 1

only_ifFunction · 0.90

Tested by

no test coverage detected