(query: string)
| 28 | const client = instrumentPoolClient( |
| 29 | { |
| 30 | unsafe(query: string) { |
| 31 | rootQueries.push(query) |
| 32 | return Promise.resolve([]) |
| 33 | }, |
| 34 | // Mirrors postgres-js: begin issues its internal BEGIN through the root |
| 35 | // client's unsafe (the instrumented one) before running the callback on |
| 36 | // a reserved connection. |