Add clauses for showing DB information

Summary:
Also add STATS Privilege and Permission.
Update tests and changelog.

Reviewers: mtomic, mferencevic, msantl

Reviewed By: msantl

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D1873
This commit is contained in:
Teon Banek
2019-02-19 13:31:46 +01:00
parent 8589dd124d
commit 6bba5f4cd0
20 changed files with 159 additions and 68 deletions

View File

@@ -66,6 +66,7 @@ class ExplainQuery;
class ProfileQuery;
class IndexQuery;
class StreamQuery;
class InfoQuery;
using TreeCompositeVisitor = ::utils::CompositeVisitor<
SingleQuery, CypherUnion, NamedExpression, OrOperator, XorOperator,
@@ -109,6 +110,6 @@ class ExpressionVisitor
template <class TResult>
class QueryVisitor
: public ::utils::Visitor<TResult, CypherQuery, ExplainQuery, ProfileQuery,
IndexQuery, AuthQuery, StreamQuery> {};
IndexQuery, AuthQuery, StreamQuery, InfoQuery> {};
} // namespace query