MCPcopy Create free account
hub / github.com/apache/arrow / SmallintArrayFromJSON

Function SmallintArrayFromJSON

cpp/src/arrow/compute/kernels/scalar_cast_test.cc:4446–4451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4444}
4445
4446std::shared_ptr<Array> SmallintArrayFromJSON(const std::string& json_data) {
4447 auto arr = ArrayFromJSON(int16(), json_data);
4448 auto ext_data = arr->data()->Copy();
4449 ext_data->type = smallint();
4450 return MakeArray(ext_data);
4451}
4452
4453std::shared_ptr<Array> TinyintArrayFromJSON(const std::string& json_data) {
4454 auto arr = ArrayFromJSON(int8(), json_data);

Callers 1

TESTFunction · 0.85

Calls 5

ArrayFromJSONFunction · 0.85
smallintFunction · 0.85
MakeArrayFunction · 0.70
CopyMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected