From a0ada914abb1e8c0fa40e1d0d449f74c876d027f Mon Sep 17 00:00:00 2001 From: gvolfing <gabor.volfinger@memgraph.io> Date: Thu, 19 Jan 2023 13:10:53 +0100 Subject: [PATCH] Fix segfault --- src/query/v2/interpreter.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/query/v2/interpreter.hpp b/src/query/v2/interpreter.hpp index 8a535bf3c..8f754b84c 100644 --- a/src/query/v2/interpreter.hpp +++ b/src/query/v2/interpreter.hpp @@ -388,7 +388,6 @@ std::map<std::string, TypedValue> Interpreter::Pull(TStream *result_stream, std: // Wrap the (statically polymorphic) stream type into a common type which // the handler knows. AnyStream stream{result_stream, &query_execution->execution_memory}; - auto asd = query_execution->prepared_query->query_handler; const auto maybe_res = query_execution->prepared_query->query_handler(&stream, n); // Stream is using execution memory of the query_execution which // can be deleted after its execution so the stream should be cleared