mirror of https://gitee.com/bigwinds/arangodb
Bug fix 3.3/issue 4582 (#4986)
This commit is contained in:
parent
51b036be9f
commit
d4cea1781a
|
@ -1,6 +1,8 @@
|
|||
v3.3.8 (XXXX-XX-XX)
|
||||
-------------------
|
||||
|
||||
* fix issue #4582: UI query editor now supports usage of empty string as bind parameter value
|
||||
|
||||
* fixed internal issue #2148: Number of documents found by filter is misleading in web UI
|
||||
|
||||
* added startup option `--database.required-directory-state`
|
||||
|
|
|
@ -1582,17 +1582,6 @@
|
|||
return quit;
|
||||
}
|
||||
|
||||
var keys = [];
|
||||
_.each(this.bindParamTableObj, function (val, key) {
|
||||
if (val === '') {
|
||||
quit = true;
|
||||
keys.push(key);
|
||||
}
|
||||
});
|
||||
if (keys.length > 0) {
|
||||
arangoHelper.arangoError('Bind Parameter', JSON.stringify(keys) + ' not defined.');
|
||||
}
|
||||
|
||||
return quit;
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue