proto.io 0.0.191 → 0.0.192

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1029,7 +1029,7 @@ class PostgresClientDriver {
1029
1029
  const stream = new QueryStream(text, values, { batchSize });
1030
1030
  client.query(stream);
1031
1031
  try {
1032
- yield* stream;
1032
+ yield* utilsJs.IteratorPool(Number.MAX_SAFE_INTEGER, stream);
1033
1033
  }
1034
1034
  finally {
1035
1035
  stream.destroy();