32ed2d7ab8
Reviewers: buda Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D566
15 lines
520 B
C++
15 lines
520 B
C++
#pragma once
|
|
|
|
// the flag is only used in hardcoded queries compilation
|
|
// see usage in plan_compiler.hpp
|
|
#ifndef HARDCODED_OUTPUT_STREAM
|
|
#include "communication/bolt/v1/encoder/result_stream.hpp"
|
|
#include "io/network/socket.hpp"
|
|
using Stream = communication::bolt::ResultStream<communication::bolt::Encoder<
|
|
communication::bolt::ChunkedEncoderBuffer<io::network::Socket>>>;
|
|
#else
|
|
#include "../print_record_stream.hpp"
|
|
using Stream = PrintRecordStream;
|
|
#endif
|
|
#include "data_structures/bitset/static_bitset.hpp"
|