This commit is contained in:
Ajay Ramachandran
2021-09-27 20:17:24 -04:00
95 changed files with 2727 additions and 2957 deletions

View File

@@ -57,7 +57,7 @@ export class Postgres implements IDatabase {
try {
const client = await this.pool.connect();
const queryResult = await client.query({text: query, values: params});
const queryResult = await client.query({ text: query, values: params });
client.release();
switch (type) {