(
table: SqlTable
)
| 343 | } |
| 344 | |
| 345 | dropTableQuery( |
| 346 | table: SqlTable |
| 347 | ): ExecutableSqlQuery { |
| 348 | return [ |
| 349 | `DROP TABLE IF EXISTS "${table.name}" CASCADE` |
| 350 | ] |
| 351 | } |
| 352 | |
| 353 | insertQuery( |
| 354 | table: SqlTable, |
nothing calls this directly
no outgoing calls
no test coverage detected