Fix IndexInMulticommandTxException error message

Reviewers: mtomic, teon.banek

Reviewed By: mtomic

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D1817
This commit is contained in:
Lovro Lugovic 2019-01-17 13:26:55 +01:00
parent 5f13b92664
commit c86cf57171

View File

@ -81,7 +81,7 @@ class IndexInMulticommandTxException : public QueryException {
using QueryException::QueryException;
IndexInMulticommandTxException()
: QueryException(
"CREATE INDEX not allowed in multicommand transactions.") {}
"Index manipulation not allowed in multicommand transactions.") {}
};
/**