| 618 | }; |
| 619 | |
| 620 | TEST_P(HashTableTest, int2DenseArray) { |
| 621 | auto type = ROW({"k1", "k2"}, {BIGINT(), BIGINT()}); |
| 622 | testCycle(BaseHashTable::HashMode::kArray, 500, 2, type, 2); |
| 623 | } |
| 624 | |
| 625 | TEST_P(HashTableTest, string1DenseArray) { |
| 626 | auto type = ROW({"k1"}, {VARCHAR()}); |
nothing calls this directly
no test coverage detected