1
0
Fork 0

fix compilation

This commit is contained in:
jsteemann 2018-05-02 22:01:11 +02:00
parent 4aa3ba0d59
commit c3efc6eab5
3 changed files with 4 additions and 3 deletions

View File

@ -181,6 +181,7 @@
"ERROR_CLUSTER_LEADERSHIP_CHALLENGE_ONGOING" : { "code" : 1495, "message" : "leadership challenge is ongoing" },
"ERROR_CLUSTER_NOT_LEADER" : { "code" : 1496, "message" : "not a leader" },
"ERROR_CLUSTER_COULD_NOT_CREATE_VIEW_IN_PLAN" : { "code" : 1497, "message" : "could not create view in plan" },
"ERROR_CLUSTER_VIEW_ID_EXISTS" : { "code" : 1498, "message" : "view ID already exists" },
"ERROR_QUERY_KILLED" : { "code" : 1500, "message" : "query killed" },
"ERROR_QUERY_PARSE" : { "code" : 1501, "message" : "%s" },
"ERROR_QUERY_EMPTY" : { "code" : 1502, "message" : "query is empty" },

View File

@ -219,7 +219,7 @@ ERROR_CLUSTER_DISTRIBUTE_SHARDS_LIKE_NUMBER_OF_SHARDS,1494,"conflicting shard nu
ERROR_CLUSTER_LEADERSHIP_CHALLENGE_ONGOING,1495,"leadership challenge is ongoing","Will be raised when servers are currently competing for leadership, and the result is still unknown."
ERROR_CLUSTER_NOT_LEADER,1496,"not a leader","Will be raised when an operation is sent to a non-leading server."
ERROR_CLUSTER_COULD_NOT_CREATE_VIEW_IN_PLAN,1497,"could not create view in plan","Will be raised when a coordinator in a cluster cannot create an entry for a new view in the Plan hierarchy in the agency."
ERROR_CLUSTER_COLLECTION_ID_EXISTS,1498,"view ID already exists","Will be raised when a coordinator in a cluster tries to create a view and the view ID already exists."
ERROR_CLUSTER_VIEW_ID_EXISTS,1498,"view ID already exists","Will be raised when a coordinator in a cluster tries to create a view and the view ID already exists."
################################################################################
## ArangoDB query errors

View File

@ -963,8 +963,8 @@ constexpr int TRI_ERROR_CLUSTER_COULD_NOT_CREATE_VIEW_IN_PLAN
/// 1498: ERROR_CLUSTER_VIEW_ID_EXISTS
/// "view ID already exists"
/// Will be raised when a coordinator in a cluster tries to create a view
/// and the view ID already exists.
/// Will be raised when a coordinator in a cluster tries to create a view and
/// the view ID already exists.
constexpr int TRI_ERROR_CLUSTER_VIEW_ID_EXISTS = 1498;
/// 1500: ERROR_QUERY_KILLED