| 1038 | } |
| 1039 | |
| 1040 | std::shared_ptr<Array> ExampleDictExtension() { |
| 1041 | auto arr = DictArrayFromJSON(dictionary(int8(), utf8()), "[0, 1, null, 1]", |
| 1042 | R"(["foo", "bar"])"); |
| 1043 | return ExtensionType::WrapArray(dict_extension_type(), arr); |
| 1044 | } |
| 1045 | |
| 1046 | std::shared_ptr<Array> ExampleComplex128() { |
| 1047 | auto arr = arrow::ArrayFromJSON(struct_({field("", float64()), field("", float64())}), |
nothing calls this directly
no test coverage detected