target database supports CTES which consist of INSERT, UPDATE or DELETE *within* the CTE, e.g. WITH x AS (UPDATE....)
(self)
| 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): |