memgraph/tests/integration/hardcoded_query/using.hpp
Marko Budiselic a32b2831e5 copy hardcoded queries
Summary: copy hardcoded queries

Reviewers: dgleich, mislav.bradac, florijan, mferencevic

Reviewed By: dgleich

Subscribers: buda

Differential Revision: https://phabricator.memgraph.io/D74
2017-02-27 18:26:51 +01:00

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