| 971 | const uint32_t batchRows = get<uint32_t>(kMaxOutputBatchRows, 10'000); |
| 972 | BOLT_USER_CHECK_LE(batchRows, std::numeric_limits<vector_size_t>::max()); |
| 973 | return batchRows; |
| 974 | } |
| 975 | |
| 976 | uint32_t minOutputBatchRows() const { |
| 977 | return get<uint32_t>(kMinOutputBatchRows, 1); |
| 978 | } |
no outgoing calls
no test coverage detected