fix(basic.gblib): Allow MERGE keyword in storage #386. @othonlima
This commit is contained in:
parent
f31b96d541
commit
02d9411671
1 changed files with 6 additions and 1 deletions
|
@ -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) {
|
if (storage) {
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue