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

Method AppendValues

cpp/src/arrow/json/from_string.cc:134–141  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132 }
133
134 Status AppendValues(const rj::Value& json_array) final {
135 auto self = static_cast<Derived*>(this);
136 ARROW_ASSIGN_OR_RAISE(auto size, SizeOfJSONArray(json_array));
137 for (uint32_t i = 0; i < size; ++i) {
138 RETURN_NOT_OK(self->AppendValue(json_array[i]));
139 }
140 return Status::OK();
141 }
142
143 const std::shared_ptr<DataType>& value_type() {
144 if (type_->id() != Type::DICTIONARY) {

Callers 4

AppendValueMethod · 0.45
AppendValueMethod · 0.45
ArrayFromJSONStringFunction · 0.45
TESTFunction · 0.45

Calls 2

OKFunction · 0.70
AppendValueMethod · 0.45

Tested by 1

TESTFunction · 0.36