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.
1 parent 3510485 commit 1ee6ae9Copy full SHA for 1ee6ae9
src/api/IBMi.ts
@@ -1565,7 +1565,7 @@ export default class IBMi {
1565
let foundNumber = this.libraryAsps.get(library);
1566
1567
if (!foundNumber) {
1568
- const [row] = await this.runSQL(`SELECT IASP_NUMBER FROM TABLE(QSYS2.LIBRARY_INFO('${this.sysNameInAmerican(library)}'))`);
+ const [row] = await this.runSQL(`SELECT IASP_NUMBER FROM TABLE(QSYS2.LIBRARY_INFO('${this.sysNameInAmerican(library)}', DETAILED_INFO=>'NO'))`);
1569
const iaspNumber = Number(row?.IASP_NUMBER);
1570
if (iaspNumber >= 0) {
1571
this.libraryAsps.set(library, iaspNumber);
0 commit comments