a32b2831e5
Summary: copy hardcoded queries Reviewers: dgleich, mislav.bradac, florijan, mferencevic Reviewed By: dgleich Subscribers: buda Differential Revision: https://phabricator.memgraph.io/D74
12 lines
325 B
C++
12 lines
325 B
C++
#pragma once
|
|
|
|
// the flag is only used in hardcoded queries compilation
|
|
// see usage in plan_compiler.hpp
|
|
#ifdef HARDCODED_OUTPUT_STREAM
|
|
#include "communication/bolt/communication.hpp"
|
|
using Stream = communication::OutputStream;
|
|
#else
|
|
#include "../stream/print_record_stream.hpp"
|
|
using Stream = PrintRecordStream;
|
|
#endif
|