fix(basic.gblib): Allow MERGE keyword in storage #380. @othonlima

This commit is contained in:
Rodrigo Rodriguez 2023-12-14 12:44:01 -03:00
parent 919b703b4d
commit a9bb5e517e

View file

@ -2155,8 +2155,8 @@ export class SystemKeywords {
let page = 0, pageSize = 1000;
let count = 0;
do {
while (page === 0 || count !== pageSize) {
rows = [
await t.findAll(
paginate(
@ -2169,7 +2169,7 @@ export class SystemKeywords {
count = rows.length;
} while (count !== 1000)
}
},
{
retries: 5,