| 5040 | }; |
| 5041 | |
| 5042 | void AsDictionary32Encoded(const Array& arr, std::shared_ptr<Array>* out) { |
| 5043 | ::arrow::StringDictionary32Builder builder(default_memory_pool()); |
| 5044 | const auto& string_array = static_cast<const ::arrow::StringArray&>(arr); |
| 5045 | ASSERT_OK(builder.AppendArray(string_array)); |
| 5046 | ASSERT_OK(builder.Finish(out)); |
| 5047 | } |
| 5048 | |
| 5049 | TEST_P(TestArrowReadDictionary, ReadWholeFileDict) { |
| 5050 | properties_.set_read_dictionary(0, true); |
no test coverage detected