| 959 | |
| 960 | uint64_t maxMergeExchangeBufferSize() const { |
| 961 | static constexpr uint64_t kDefault = 128UL << 20; |
| 962 | return get<uint64_t>(kMaxMergeExchangeBufferSize, kDefault); |
| 963 | } |
| 964 | |
| 965 | uint64_t preferredOutputBatchBytes() const { |
| 966 | static constexpr uint64_t kDefault = 10UL << 20; |
| 967 | return get<uint64_t>(kPreferredOutputBatchBytes, kDefault); |
| 968 | } |
no test coverage detected