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

This commit is contained in:
Rodrigo Rodriguez 2023-12-17 00:52:16 -03:00
parent 9def5d2549
commit 0927b3cc47

View file

@ -2346,7 +2346,7 @@ export class SystemKeywords {
let value = row[p];
if (typeof (value) === 'string') {
value = value.substr(0, fieldsSizes[j]-1);
value = value.substring(0, fieldsSizes[j]-1);
}
fieldsValues.push(value);