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