97aa4b92e1
Summary: After manual merge of dev. Merge branch 'dev' into separate_bitset Include bitset in template. Merge branch 'dev' into separate_bitset Reviewers: florijan, buda Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D97
14 lines
440 B
C++
14 lines
440 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/serialization/record_stream.hpp"
|
|
#include "io/network/socket.hpp"
|
|
using Stream = bolt::RecordStream<io::network::Socket>;
|
|
#else
|
|
#include "../stream/print_record_stream.hpp"
|
|
using Stream = PrintRecordStream;
|
|
#endif
|
|
#include "data_structures/bitset/static_bitset.hpp"
|