overwriteTable

abstract fun overwriteTable(sourceTableName: TableName, targetTableName: TableName): Sql

Replace the targetTable with the sourceTable. This is typically something like

DROP TABLE IF EXISTS target;
ALTER TABLE source RENAME TO target;