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

Method IsTimeOrKeyColumn

cpp/src/arrow/acero/asof_join_node.cc:537–540  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

535 }
536
537 bool IsTimeOrKeyColumn(col_index_t i) const {
538 DCHECK_LT(i, schema_->num_fields());
539 return (i == time_col_index_) || std_has(key_col_index_, i);
540 }
541
542 // Gets the latest row index, assuming the queue isn't empty
543 row_index_t GetLatestRow() const { return latest_ref_row_; }

Callers

nothing calls this directly

Calls 2

std_hasFunction · 0.70
num_fieldsMethod · 0.45

Tested by

no test coverage detected