mirror of https://gitee.com/bigwinds/arangodb
added generated file
This commit is contained in:
parent
7f1cd2681c
commit
ffb2a0f545
|
@ -1675,6 +1675,10 @@ static v8::Handle<v8::Value> JS_AllQuery (v8::Arguments const& argv) {
|
|||
|
||||
const size_t n = docs.size();
|
||||
uint32_t count = 0;
|
||||
|
||||
if (n > 0) {
|
||||
TRI_ASSERT_MAINTAINER(barrier != 0);
|
||||
}
|
||||
|
||||
// setup result
|
||||
v8::Handle<v8::Object> result = v8::Object::New();
|
||||
|
|
|
@ -121,6 +121,7 @@
|
|||
"ERROR_TRANSACTION_INTERNAL" : { "code" : 1653, "message" : "internal transaction error" },
|
||||
"ERROR_TRANSACTION_UNREGISTERED_COLLECTION" : { "code" : 1654, "message" : "unregistered collection used in transaction" },
|
||||
"ERROR_TRANSACTION_DISALLOWED_OPERATION" : { "code" : 1655, "message" : "disallowed operation inside a transaction" },
|
||||
"ERROR_TRANSACTION_DEADLOCK" : { "code" : 1656, "message" : "deadlock detected during transaction execution" },
|
||||
"ERROR_USER_INVALID_NAME" : { "code" : 1700, "message" : "invalid user name" },
|
||||
"ERROR_USER_INVALID_PASSWORD" : { "code" : 1701, "message" : "invalid password" },
|
||||
"ERROR_USER_DUPLICATE" : { "code" : 1702, "message" : "duplicate user" },
|
||||
|
|
Loading…
Reference in New Issue