We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3d3380 commit dc51967Copy full SHA for dc51967
CHANGES.md
@@ -1,5 +1,7 @@
1
In next release ...
2
3
+- Fix issue where larger results would sometimes have duplicates (#122).
4
+
5
- Fixed an issue where the result row array type would use the record generic
6
as the value type instead of `any` which was incorrect.
7
src/client.ts
@@ -935,6 +935,7 @@ export class ClientImpl {
935
936
// Keep track of how much data we've consumed.
937
frame += bytes;
938
+ read += bytes;
939
940
// If the next message header doesn't fit, we
941
// break out and wait for more data to arrive.
@@ -943,8 +944,6 @@ export class ClientImpl {
943
944
this.expect = 5;
945
return read;
946
}
-
947
- read += bytes;
948
949
950
this.activeRow = null;
0 commit comments