| 242 | ::testing::Values(false, true))); |
| 243 | |
| 244 | TEST_P(HashJoinTest, TestSemiJoins) { |
| 245 | RunNonEmptyTest(std::get<0>(GetParam()), std::get<1>(GetParam())); |
| 246 | } |
| 247 | |
| 248 | TEST_P(HashJoinTest, TestSemiJoinsEmpty) { |
| 249 | RunEmptyTest(std::get<0>(GetParam()), std::get<1>(GetParam())); |
nothing calls this directly
no test coverage detected