Skip to content

Commit a43da4e

Browse files
committed
chore: revert result-size test
1 parent 18d61e2 commit a43da4e

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

test/server/result-size-limit.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,23 +78,21 @@ describe('test js parser error max result', () => {
7878
id SERIAL PRIMARY KEY,
7979
data TEXT
8080
);
81-
`,
82-
false
81+
`
8382
)
8483

8584
// Insert data that will exceed our limit in tests it's set around ~20MB
8685
await pgMeta.query(
8786
`
8887
INSERT INTO very_large_data (data)
8988
VALUES (repeat('x', 710 * 1024 * 1024)) -- 700+MB string will raise a JS exception at parse time
90-
`,
91-
false
89+
`
9290
)
9391
})
9492

9593
afterAll(async () => {
9694
// Clean up the test table
97-
await pgMeta.query('DROP TABLE very_large_data;', false)
95+
await pgMeta.query('DROP TABLE very_large_data;')
9896
})
9997

10098
test(

0 commit comments

Comments
 (0)