I'd like to create a temporary table in SQLAlchemy. I can build a CREATE TABLE
statement with a TEMPORARY
clause by calling table._prefixes.append('TEMPORARY')
against a Table
object, but that's less elegant than table.select().prefix_with()
used to add a prefix to data manipulation language expressions.
Is there an equivalent to .prefix_with()
for DDL?