(sql: string)
| 13 | import { throwExp } from 'shared/utility' |
| 14 | |
| 15 | async function format(sql: string) { |
| 16 | return await actualFormat('select * from x where ' + sql, { |
| 17 | parser: 'sqlite', |
| 18 | plugins: [plugin], |
| 19 | }) |
| 20 | } |
| 21 | |
| 22 | function unparameterize(i: { i: number }, query: CompiledQuery<SqlBool>) { |
| 23 | let parameterizedSql = query.sql |
no outgoing calls
no test coverage detected