| 508 | } |
| 509 | static void DoSingleByKey(BasicTest& basic_tests) { basic_tests.RunSingleByKey(); } |
| 510 | void RunDoubleByKey() { |
| 511 | using B = BatchesWithSchema; |
| 512 | RunBatches([this](B l_batches, B r0_batches, B r1_batches, B exp_nokey_batches, |
| 513 | B exp_emptykey_batches, B exp_batches) { |
| 514 | CheckRunOutput(l_batches, r0_batches, r1_batches, exp_batches, "time", |
| 515 | {"key", "key"}, tolerance); |
| 516 | }); |
| 517 | } |
| 518 | static void DoDoubleByKey(BasicTest& basic_tests) { basic_tests.RunDoubleByKey(); } |
| 519 | void RunMutateByKey() { |
| 520 | using B = BatchesWithSchema; |
nothing calls this directly
no test coverage detected