d00c08bf15
Summary: Bolt PullAll works. ChunkedBuffer is implemented by the specification (the tests can be found in the tests/unit/bolt_chunked_buffer.cpp). Bolt session states method are refactored (all run methods have only one argument - active Session). Modifications related to the style guide. Reviewers: mferencevic Reviewed By: mferencevic Subscribers: pullbot, buda Differential Revision: https://phabricator.memgraph.io/D180
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::ChunkedBuffer<io::network::Socket>>>;
|
|
#else
|
|
#include "../stream/print_record_stream.hpp"
|
|
using Stream = PrintRecordStream;
|
|
#endif
|
|
#include "data_structures/bitset/static_bitset.hpp"
|