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

Method Empty

cpp/src/arrow/acero/sorted_merge_node.cc:135–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

133 row_index_t GetLatestRow() const { return latest_ref_row_; }
134
135 bool Empty() const {
136 // cannot be empty if ref row is >0 -- can avoid slow queue lock
137 // below
138 if (latest_ref_row_ > 0) {
139 return false;
140 }
141 return queue_.Empty();
142 }
143
144 size_t index() const { return index_; }
145

Callers 2

AdvanceMethod · 0.45
getNextBatchMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected