| 499 | } |
| 500 | |
| 501 | void RunSingleByKey() { |
| 502 | using B = BatchesWithSchema; |
| 503 | RunBatches([this](B l_batches, B r0_batches, B r1_batches, B exp_nokey_batches, |
| 504 | B exp_emptykey_batches, B exp_batches) { |
| 505 | CheckRunOutput(l_batches, r0_batches, r1_batches, exp_batches, "time", "key", |
| 506 | tolerance); |
| 507 | }); |
| 508 | } |
| 509 | static void DoSingleByKey(BasicTest& basic_tests) { basic_tests.RunSingleByKey(); } |
| 510 | void RunDoubleByKey() { |
| 511 | using B = BatchesWithSchema; |
nothing calls this directly
no test coverage detected