Skip to content

Commit 7ec4b94

Browse files
committed
Increase row limit for Notebooks
Signed-off-by: worksofliam <[email protected]>
1 parent cf0288e commit 7ec4b94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/notebooks/Controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class IBMiController {
8383

8484
// Execute the query
8585
const query = selected.job.query(content);
86-
const results = await query.execute();
86+
const results = await query.execute(1000);
8787

8888
const table = results.data;
8989
if (table === undefined && results.success && !results.has_results) {

0 commit comments

Comments
 (0)