Skip to content

Commit 0cee28d

Browse files
author
Annie Zhang
authored
Increase accumulateQuery debounce to 150ms (#351)
1 parent 1a73c5e commit 0cee28d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/table.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ async function* accumulateQuery(queryRequest) {
287287
values.schema = queryResponse.schema;
288288
try {
289289
for await (const rows of queryResponse.readRows()) {
290-
if (performance.now() - then > 10 && values.length > 0) {
290+
if (performance.now() - then > 150 && values.length > 0) {
291291
yield values;
292292
then = performance.now();
293293
}

0 commit comments

Comments
 (0)