From 83aa71a29f3b3cdafed00c0427bfea65d3a91d17 Mon Sep 17 00:00:00 2001 From: niko4299 Date: Fri, 8 Jul 2022 10:59:54 +0200 Subject: [PATCH] interpreter.cpp 286 line convert vector label strings to vector LabelId, possible changes to LabelPermission --- src/query/interpreter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/query/interpreter.cpp b/src/query/interpreter.cpp index 2299935d6..2f28b1205 100644 --- a/src/query/interpreter.cpp +++ b/src/query/interpreter.cpp @@ -283,6 +283,7 @@ Callback HandleAuthQuery(AuthQuery *auth_query, AuthQueryHandler *auth, const Pa std::string user_or_role = auth_query->user_or_role_; std::vector privileges = auth_query->privileges_; std::vector labels = auth_query->labels_; + // std::vector labels = NamesToLabels(labels, db_accessor); auto password = EvaluateOptionalExpression(auth_query->password_, &evaluator); Callback callback;