Lbug C++ API
Loading...
Searching...
No Matches
arrow_result_config.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4
5namespace lbug {
6namespace common {
7
9 int64_t chunkSize;
10
11 ArrowResultConfig() : chunkSize(DEFAULT_CHUNK_SIZE) {}
13
14private:
15 static constexpr int64_t DEFAULT_CHUNK_SIZE = 1000;
16};
17
18} // namespace common
19} // namespace lbug
Definition array_utils.h:7
Definition array_utils.h:7
ArrowResultConfig()
Definition arrow_result_config.h:11
ArrowResultConfig(int64_t chunkSize)
Definition arrow_result_config.h:12
int64_t chunkSize
Definition arrow_result_config.h:9