fix(Postgres Node): Allow users to wrap strings with $$ (#12034)

This commit is contained in:
Dana
2024-12-16 18:02:48 +01:00
committed by GitHub
parent a5e01cfa23
commit 0c15e30778
3 changed files with 55 additions and 6 deletions

View File

@@ -143,7 +143,7 @@ export async function execute(
}
}
queries.push({ query, values });
queries.push({ query, values, options: { partial: true } });
}
return await runQueries(queries, items, nodeOptions);