(self)
| 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): |