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

This commit is contained in:
Rodrigo Rodriguez 2024-01-09 16:17:49 -03:00
parent f31b96d541
commit 02d9411671

View file

@ -2327,7 +2327,12 @@ export class SystemKeywords {
}
});
if (value != valueFound && columnNameFound) {
const equals =
typeof (value) === 'string' && typeof (valueFound) === 'string' ?
value?.toLowerCase() != valueFound?.toLowerCase() :
value != valueFound;
if (equals && columnNameFound) {
if (storage) {