Skip to content

Commit

Permalink
Merge pull request #296 from codefori/fix/notebook_row_limit
Browse files Browse the repository at this point in the history
Fix/notebook_row_limit
  • Loading branch information
worksofliam authored Nov 6, 2024
2 parents cf0288e + 2181de8 commit 52b1f81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion src/notebooks/Controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 52b1f81

Please sign in to comment.