| 1033 | } |
| 1034 | |
| 1035 | std::shared_ptr<Array> ExampleTinyint() { |
| 1036 | auto arr = arrow::ArrayFromJSON(int8(), "[-128, null, 1, 2, 3, 4, 127]"); |
| 1037 | return ExtensionType::WrapArray(tinyint(), arr); |
| 1038 | } |
| 1039 | |
| 1040 | std::shared_ptr<Array> ExampleDictExtension() { |
| 1041 | auto arr = DictArrayFromJSON(dictionary(int8(), utf8()), "[0, 1, null, 1]", |
nothing calls this directly
no test coverage detected