| 494 | bool hasSpillExecutor; |
| 495 | |
| 496 | std::string debugString() const { |
| 497 | return fmt::format( |
| 498 | "numInputSources {}, numInputBatches {}, inputBatchSize {}, maxNumMergeSources {}, maxOutputBatchRows {}, maxOutputBatchBytes {}, numExpectedOutputBatches {}, hasSpillExecutor {}", |
| 499 | numInputSources, |
| 500 | numInputBatches, |
| 501 | inputBatchSize, |
| 502 | maxNumMergeSources, |
| 503 | maxOutputBatchRows, |
| 504 | maxOutputBatchBytes, |
| 505 | numExpectedOutputBatches, |
| 506 | hasSpillExecutor); |
| 507 | } |
| 508 | } testSettings[]{ |
| 509 | {1, 1, 1, 1, 1, std::numeric_limits<int>::max(), 1, true}, |
| 510 | {1, 1, 1, 1, 1, std::numeric_limits<int>::max(), 1, false}, |
no outgoing calls
no test coverage detected