Set the default pull-mechanism back to single-pull

This commit is contained in:
gvolfing 2023-01-31 17:36:52 +01:00
parent 4f8c241934
commit 7d63236f87

View File

@ -812,8 +812,7 @@ std::optional<plan::ProfilingStatsWithTotalTime> PullPlan::PullMultiple(AnyStrea
std::optional<plan::ProfilingStatsWithTotalTime> PullPlan::Pull(AnyStream *stream, std::optional<int> n,
const std::vector<Symbol> &output_symbols,
std::map<std::string, TypedValue> *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);
}