Skip to content

Commit e3d3380

Browse files
committed
Add test to demonstrate corruption issue when selecting many rows
1 parent ecd9bd9 commit e3d3380

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

test/client.test.ts

+16
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,22 @@ describe('Query', () => {
301301
deepEqual(result.rows, [[1]]);
302302
});
303303

304+
test('Select many', async ({ client }) => {
305+
const queryRunsCount = 10;
306+
const idsCount = 10_000;
307+
for (let i = 0; i < queryRunsCount; ++i) {
308+
const result = await client.query(
309+
'select id, id + 1, id + 2 from generate_series(1, $1) id',
310+
[idsCount],
311+
);
312+
deepEqual(result.rows.length, idsCount);
313+
for (const [i, j, k] of result.rows) {
314+
deepEqual(i + 1, j);
315+
deepEqual(i + 2, k);
316+
}
317+
}
318+
});
319+
304320
test('Stream', async ({ client }) => {
305321
const s = 'abcdefghijklmnopqrstuvxyz'.repeat(Math.pow(2, 17));
306322
const buffer = Buffer.from(s);

0 commit comments

Comments
 (0)