Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
qw4990 committed Apr 30, 2024
1 parent 190e9d3 commit cca5b0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/planner/core/common_plans.go
Original file line number Diff line number Diff line change
Expand Up @@ -1118,10 +1118,11 @@ func (e *Explain) prepareOperatorInfoForJSONFormat(p base.Plan, taskType, id str
return nil
}

estRows, _, _, accessObject, operatorInfo := e.getOperatorInfo(p, id)
estRows, estCost, _, accessObject, operatorInfo := e.getOperatorInfo(p, id)
jsonRow := &ExplainInfoForEncode{
ID: explainID,
EstRows: estRows,
EstCost: estCost,
TaskType: taskType,
AccessObject: accessObject,
OperatorInfo: operatorInfo,
Expand Down

0 comments on commit cca5b0c

Please sign in to comment.