We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
const
1 parent 2024c1f commit b810395Copy full SHA for b810395
src/connection/manager.ts
@@ -91,9 +91,9 @@ export class SQLJobManager {
91
const selected = this.jobs[this.selectedJob]
92
if (SQLJobManager.jobSupport && selected) {
93
// 2147483647 is NOT arbitrary. On the server side, this is processed as a Java
94
- // int. This is the largest number available without overflow
95
- let rowsToFetch = 2147483647;
96
- let results = await selected.job.query<T>(query).run(rowsToFetch);
+ // int. This is the largest number available without overflow (Integer.MAX_VALUE)
+ const rowsToFetch = 2147483647;
+ const results = await selected.job.query<T>(query).run(rowsToFetch);
97
return results.data;
98
} else {
99
const instance = getInstance();
0 commit comments