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,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,
|
||||
|
|
Loading…
Add table
Reference in a new issue