mirror of https://gitee.com/bigwinds/arangodb
compilation fix (#9340)
This commit is contained in:
parent
18fa84d619
commit
2fb159a8e2
|
@ -2982,8 +2982,8 @@ Result ClusterInfo::ensureIndexCoordinatorInner( // create index
|
||||||
// which does not do any harm:
|
// which does not do any harm:
|
||||||
auto coll = getCollection(databaseName, collectionID);
|
auto coll = getCollection(databaseName, collectionID);
|
||||||
if (coll == nullptr) {
|
if (coll == nullptr) {
|
||||||
errorMsg = "The collection has gone. Aborting index creation";
|
return Result(TRI_ERROR_ARANGO_INDEX_CREATION_FAILED,
|
||||||
return TRI_ERROR_ARANGO_INDEX_CREATION_FAILED;
|
"The collection has gone. Aborting index creation");
|
||||||
}
|
}
|
||||||
|
|
||||||
auto indexes = coll->getIndexes();
|
auto indexes = coll->getIndexes();
|
||||||
|
|
Loading…
Reference in New Issue