From 7ec4b94fb0d7f518a07e119019a67f94dcd0d79c Mon Sep 17 00:00:00 2001 From: worksofliam Date: Wed, 6 Nov 2024 16:18:26 -0500 Subject: [PATCH 1/2] Increase row limit for Notebooks Signed-off-by: worksofliam --- src/notebooks/Controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notebooks/Controller.ts b/src/notebooks/Controller.ts index 243015be..52ee68e8 100644 --- a/src/notebooks/Controller.ts +++ b/src/notebooks/Controller.ts @@ -83,7 +83,7 @@ export class IBMiController { // Execute the query const query = selected.job.query(content); - const results = await query.execute(); + const results = await query.execute(1000); const table = results.data; if (table === undefined && results.success && !results.has_results) { From 2181de8c0a7cf9edf88b81d43a23179a6e173750 Mon Sep 17 00:00:00 2001 From: worksofliam Date: Wed, 6 Nov 2024 16:18:35 -0500 Subject: [PATCH 2/2] Fix for build Signed-off-by: worksofliam --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 75061d98..c54508ef 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "package": "vsce package", "vscode:prepublish": "rm -rf dist && npm run webpack && npm run dsc", "webpack": "vscd --clean && webpack --mode development", - "webpack-dev": "vscd --clean && webpack --mode development --watch", + "webpack-dev": "vscd --clean && webpack --mode development", "typings": "npx -p typescript tsc ./src/extension.ts --declaration --allowJs --emitDeclarationOnly --outDir types --esModuleInterop -t es2019 --moduleResolution node" }, "contributes": {