| 872 | } |
| 873 | |
| 874 | Status PartitionedHashJoinNode::InitNullAwareProbePartition() { |
| 875 | null_aware_probe_partition_.reset( |
| 876 | new ProbePartition(runtime_state_, this, builder_->null_aware_partition())); |
| 877 | RETURN_IF_ERROR(null_aware_probe_partition_->PrepareForWrite(this, true)); |
| 878 | return Status::OK(); |
| 879 | } |
| 880 | |
| 881 | Status PartitionedHashJoinNode::InitNullProbeRows() { |
| 882 | RuntimeState* state = runtime_state_; |
nothing calls this directly
no test coverage detected