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 eefddef commit 9dab9efCopy full SHA for 9dab9ef
modules/module-postgres-storage/src/storage/batch/PostgresPersistedBatch.ts
@@ -266,7 +266,7 @@ export class PostgresPersistedBatch {
266
const stats = {
267
bucketDataCount: this.bucketDataInserts.length,
268
parameterDataCount: this.parameterDataInserts.length,
269
- currentDataCount: this.currentDataInserts.size + this.currentDataDeletes.length
+ currentDataCount: this.currentDataInserts.size + this.currentDataDeletes.size
270
};
271
const flushedAny = stats.bucketDataCount > 0 || stats.parameterDataCount > 0 || stats.currentDataCount > 0;
272
0 commit comments