mirror of https://gitee.com/bigwinds/arangodb
autobuilt files
This commit is contained in:
parent
788e59ed39
commit
ffc75f9a7a
|
@ -97,6 +97,13 @@ ArangoQueryCursor.prototype.toString = function () {
|
|||
|
||||
result += ", hasMore: " + (this.hasNext() ? "true" : "false");
|
||||
|
||||
if (this.data.hasOwnProperty("extra") &&
|
||||
this.data.extra.hasOwnProperty("warnings")) {
|
||||
for (var j = 0; j < this.data.extra.warnings.length; j++) {
|
||||
result += ", WARNING: " + this.data.extra.warnings[j].code +
|
||||
" - " + this.data.extra.warnings[j].message
|
||||
}
|
||||
}
|
||||
result += "]";
|
||||
|
||||
if (!isCaptureModeActive) {
|
||||
|
|
Loading…
Reference in New Issue