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

Method ProcessData

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

Trigger conversion of parsed block data

Source from the content-addressed store, hash-verified

806
807 // Trigger conversion of parsed block data
808 Status ProcessData(const std::shared_ptr<BlockParser>& parser, int64_t block_index) {
809 for (auto& builder : column_builders_) {
810 builder->Insert(block_index, parser);
811 }
812 return Status::OK();
813 }
814
815 Result<std::shared_ptr<Table>> MakeTable() {
816 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