We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3071dd7 commit 5523361Copy full SHA for 5523361
1 file changed
packages/pg-driver/src/factories/createPgDriverFactory.ts
@@ -340,7 +340,6 @@ export const createPgDriverFactory = (): DriverFactory => {
340
// `rowDescription` will not fire if the query produces a syntax error.
341
// Also, `rowDescription` won't fire until client starts consuming the stream.
342
// This is why we cannot simply await for `rowDescription` event before starting to pipe the stream.
343
- // @ts-expect-error – https://github.com/brianc/node-postgres/issues/3015
344
client.connection.once('rowDescription', (rowDescription) => {
345
fields = rowDescription.fields.map((field) => {
346
return {
0 commit comments