Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
ghx-label-9
Description
I was digging into something else and came across this. The initialization of the scan split progress is incorrectÂ
Status HdfsScanNodeBase::Open(RuntimeState* state) { RETURN_IF_ERROR(ScanNode::Open(state)); . . progress_.Init(Substitute("Splits complete (node=$0)", total_splits),total_splits); return Status::OK(); }
It should be progress_.Init(Substitute("Splits complete (node=$0)", id_),total_splits); instead