(method: string, sql: string, params: ReadonlyArray<unknown>)
| 276 | try: () => pglite.refreshArrayTypes(), |
| 277 | catch: (cause) => |
| 278 | new SqlError({ reason: classifyError(cause, "Failed to refresh array types", "refreshArrayTypes") }) |
| 279 | }) |
| 280 | ) |
| 281 | } |
| 282 | ) |
| 283 | }) |
| 284 | |
| 285 | class PgliteConnection implements Connection { |
| 286 | readonly pglite: PGliteInterface |
| 287 | constructor(pglite: PGliteInterface) { |
| 288 | this.pglite = pglite |
| 289 | } |
no test coverage detected