We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09f21c1 commit 4566ce7Copy full SHA for 4566ce7
src/connectors/postgres/index.ts
@@ -481,7 +481,7 @@ export class PostgresConnector implements Connector {
481
if (result.rows && result.rows.length > 0) {
482
allRows.push(...result.rows);
483
}
484
- // Accumulate rowCount for INSERT/UPDATE/DELETE statements
+ // Accumulate rowCount for all statements (affected rows for writes, returned rows for reads)
485
if (result.rowCount) {
486
totalRowCount += result.rowCount;
487
0 commit comments