(connection: Connection)
| 51 | }; |
| 52 | |
| 53 | const testConnection = async (connection: Connection): Promise<boolean> => { |
| 54 | const client = await newPostgresClient(connection); |
| 55 | await client.end(); |
| 56 | return true; |
| 57 | }; |
| 58 | |
| 59 | const execute = async (connection: Connection, databaseName: string, statement: string): Promise<any> => { |
| 60 | connection.database = databaseName; |
no test coverage detected