From 7d63236f871ec60d94c1dff4794ef028783456a6 Mon Sep 17 00:00:00 2001 From: gvolfing Date: Tue, 31 Jan 2023 17:36:52 +0100 Subject: [PATCH] Set the default pull-mechanism back to single-pull --- src/query/v2/interpreter.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/query/v2/interpreter.cpp b/src/query/v2/interpreter.cpp index fe7a17bf7..aa220d764 100644 --- a/src/query/v2/interpreter.cpp +++ b/src/query/v2/interpreter.cpp @@ -812,8 +812,7 @@ std::optional PullPlan::PullMultiple(AnyStrea std::optional PullPlan::Pull(AnyStream *stream, std::optional n, const std::vector &output_symbols, std::map *summary) { - // auto should_pull_multiple = false; // TODO on the long term, we will only use PullMultiple - auto should_pull_multiple = true; + auto should_pull_multiple = false; // TODO on the long term, we will only use PullMultiple if (should_pull_multiple) { return PullMultiple(stream, n, output_symbols, summary); }