2016-11-29 11:08:08 +08:00
|
|
|
#pragma once
|
|
|
|
|
2017-02-28 01:23:38 +08:00
|
|
|
// the flag is only used in hardcoded queries compilation
|
|
|
|
// see usage in plan_compiler.hpp
|
2017-02-28 19:14:49 +08:00
|
|
|
#ifndef HARDCODED_OUTPUT_STREAM
|
2017-02-28 01:23:38 +08:00
|
|
|
#include "communication/bolt/communication.hpp"
|
|
|
|
using Stream = communication::OutputStream;
|
|
|
|
#else
|
2017-02-14 16:37:32 +08:00
|
|
|
#include "../stream/print_record_stream.hpp"
|
|
|
|
using Stream = PrintRecordStream;
|
2017-02-28 01:23:38 +08:00
|
|
|
#endif
|