Returns the row descriptor for rows produced by this node. The RowDescriptor is constant for the lifetime of the fragment instance, and so is shared by reference across the plan tree, including in RowBatches. The lifetime of the descriptor is the same as the lifetime of this node.
| 296 | /// across the plan tree, including in RowBatches. The lifetime of the descriptor is the |
| 297 | /// same as the lifetime of this node. |
| 298 | const RowDescriptor* row_desc() const { return &row_descriptor_; } |
| 299 | |
| 300 | ExecNode* child(int i) { return children_[i]; } |
| 301 | int num_children() const { return children_.size(); } |
no outgoing calls
no test coverage detected