(url: string)
| 26 | import { assertNoSensitiveFrameworkTables } from "./safety.js"; |
| 27 | |
| 28 | function isPostgresUrl(url: string): boolean { |
| 29 | return url.startsWith("postgres://") || url.startsWith("postgresql://"); |
| 30 | } |
| 31 | |
| 32 | interface DbExecStatement { |
| 33 | sql: string; |