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-03-22 23:36:48 +08:00
|
|
|
#include "communication/bolt/v1/encoder/result_stream.hpp"
|
2017-03-06 20:37:51 +08:00
|
|
|
#include "io/network/socket.hpp"
|
2017-03-22 23:36:48 +08:00
|
|
|
using Stream = communication::bolt::ResultStream<io::network::Socket>;
|
2017-02-28 01:23:38 +08:00
|
|
|
#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
|
2017-03-08 17:02:23 +08:00
|
|
|
#include "data_structures/bitset/static_bitset.hpp"
|