PostgreSQL
 sql >> Datenbank >  >> RDS >> PostgreSQL

Array von Abfragen für die „for await“-Schleife für die Postgresql-Transaktionshilfe

Ändern Sie dies:

var queries = queriesRaw.map(q => {
  return client.query(q[0], q[1])
})

for await (const oneResult of queries) {
  allResults.push(oneResult)
}

An:

for(const q of rawQueries) {
   let result = await client.query(q[0], q[1]);
   allResults.push(result);
});