8524-devToTest #3415

Merged
alexm merged 343 commits from 8524-devToTest into test 2025-02-04 13:42:16 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit aa2f9985cd - Show all commits

View File

@ -66,7 +66,7 @@ module.exports = Self => {
stmts.push(`DROP TEMPORARY TABLE tmp.supplierStatement`); stmts.push(`DROP TEMPORARY TABLE tmp.supplierStatement`);
const sql = ParameterizedSQL.join(stmts, ';'); const sql = ParameterizedSQL.join(stmts, ';');
const results = await conn.executeStmt(sql); const results = await conn.executeStmt(sql);
const resultsIndex = stmts.length - 1; const resultsIndex = stmts.length - 2;
const result = results[resultsIndex]; const result = results[resultsIndex];
return result; return result;
}; };