| 1046 | } |
| 1047 | |
| 1048 | std::shared_ptr<Array> ExampleDictExtension() { |
| 1049 | auto arr = DictArrayFromJSON(dictionary(int8(), utf8()), "[0, 1, null, 1]", |
| 1050 | R"(["foo", "bar"])"); |
| 1051 | return ExtensionType::WrapArray(dict_extension_type(), arr); |
| 1052 | } |
| 1053 | |
| 1054 | std::shared_ptr<Array> ExampleComplex128() { |
| 1055 | auto arr = arrow::ArrayFromJSON(struct_({field("", float64()), field("", float64())}), |
nothing calls this directly
no test coverage detected