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

Method ProcessData

cpp/src/arrow/csv/reader.cc:802–807  ·  view source on GitHub ↗

Trigger conversion of parsed block data

Source from the content-addressed store, hash-verified

800
801 // Trigger conversion of parsed block data
802 Status ProcessData(const std::shared_ptr<BlockParser>& parser, int64_t block_index) {
803 for (auto& builder : column_builders_) {
804 builder->Insert(block_index, parser);
805 }
806 return Status::OK();
807 }
808
809 Result<std::shared_ptr<Table>> MakeTable() {
810 DCHECK_EQ(column_builders_.size(), conversion_schema_.columns.size());

Callers

nothing calls this directly

Calls 2

OKFunction · 0.50
InsertMethod · 0.45

Tested by

no test coverage detected