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

Method column

cpp/src/arrow/record_batch.cc:108–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106 }
107
108 std::shared_ptr<Array> column(int i) const override {
109 std::lock_guard lock(mutex_);
110 if (!boxed_columns_[i]) {
111 boxed_columns_[i] = MakeArray(columns_[i]);
112 }
113 return boxed_columns_[i];
114 }
115
116 std::shared_ptr<ArrayData> column_data(int i) const override { return columns_[i]; }
117

Callers 3

EqualsMethod · 0.45
EnumerateStatisticsFunction · 0.45
ConcatenateRecordBatchesFunction · 0.45

Calls 1

MakeArrayFunction · 0.50

Tested by

no test coverage detected