fix(basic.gblib): Allow MERGE keyword in storage #380. @othonlima
This commit is contained in:
parent
9e6ae42a5d
commit
b4ba7df585
1 changed files with 1 additions and 1 deletions
|
@ -2156,7 +2156,7 @@ export class SystemKeywords {
|
||||||
const paged = await t.findAll(
|
const paged = await t.findAll(
|
||||||
{offset:page * pageSize, limit:pageSize, subquery:false, where:{}}
|
{offset:page * pageSize, limit:pageSize, subquery:false, where:{}}
|
||||||
);
|
);
|
||||||
rows = [paged, ...rows];
|
rows = [...paged, ...rows];
|
||||||
page++;
|
page++;
|
||||||
count = paged.length;
|
count = paged.length;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue