target platform supports CREATE TEMPORARY TABLE AS SELECT.
(self)
| 113 | |
| 114 | @property |
| 115 | def create_temp_table_as(self): |
| 116 | """target platform supports CREATE TEMPORARY TABLE AS SELECT.""" |
| 117 | |
| 118 | return only_on(["postgresql", "mysql", "mariadb", "sqlite", "mssql"]) |
| 119 | |
| 120 | @property |
| 121 | def index_ddl_if_exists(self): |