| 98 | } |
| 99 | |
| 100 | TEST(HashingQuality, Int64) { |
| 101 | #ifdef ARROW_VALGRIND |
| 102 | const int32_t n_values = 500; |
| 103 | #else |
| 104 | const int32_t n_values = 10000; |
| 105 | #endif |
| 106 | { |
| 107 | const auto values = MakeDistinctIntegers<int64_t>(n_values); |
| 108 | CheckScalarHashQuality<int64_t>(values); |
| 109 | } |
| 110 | { |
| 111 | const auto values = MakeSequentialIntegers<int64_t>(n_values); |
| 112 | CheckScalarHashQuality<int64_t>(values); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | TEST(HashingQuality, Strings) { |
| 117 | #ifdef ARROW_VALGRIND |
nothing calls this directly
no test coverage detected