// Certain field aren't allowed without quoting in Postgres.// Also case sensitivity can be messed up by not quoting. So// we use this to quote.exportfunctionquoteField(field: string): string {
if (field[0] === '"') {
// already quotedreturn field;
}
return`"${field}"`;
}