| 273 | } |
| 274 | |
| 275 | string IcebergDeleteNode::NodeDebugString() const { |
| 276 | stringstream ss; |
| 277 | ss << "IcebergDeleteNode (id=" << id() << " op=" << join_op_ << ")" << endl; |
| 278 | |
| 279 | if (builder_ != nullptr) { |
| 280 | ss << "IcebergDeleteBuilder: " << builder_->DebugString(); |
| 281 | } |
| 282 | |
| 283 | return ss.str(); |
| 284 | } |
| 285 | |
| 286 | uint64_t IR_ALWAYS_INLINE IcebergDeleteNode::ProbeFilePosition( |
| 287 | const RowBatch::Iterator& probe_it) const { |
nothing calls this directly
no test coverage detected