fix(basic.gblib): Allow MERGE keyword in storage #380. @othonlima
This commit is contained in:
parent
919b703b4d
commit
a9bb5e517e
1 changed files with 3 additions and 3 deletions
|
@ -2155,7 +2155,7 @@ export class SystemKeywords {
|
||||||
let page = 0, pageSize = 1000;
|
let page = 0, pageSize = 1000;
|
||||||
let count = 0;
|
let count = 0;
|
||||||
|
|
||||||
do {
|
while (page === 0 || count !== pageSize) {
|
||||||
|
|
||||||
rows = [
|
rows = [
|
||||||
await t.findAll(
|
await t.findAll(
|
||||||
|
@ -2169,7 +2169,7 @@ export class SystemKeywords {
|
||||||
|
|
||||||
count = rows.length;
|
count = rows.length;
|
||||||
|
|
||||||
} while (count !== 1000)
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
retries: 5,
|
retries: 5,
|
||||||
|
|
Loading…
Add table
Reference in a new issue