fix some typo error

This commit is contained in:
csch
2023-04-18 11:45:35 +08:00
parent 8cd9103c3d
commit bf3c79679d
4 changed files with 13 additions and 13 deletions

View File

@ -155,7 +155,7 @@ int ObOptimizerStatsGatheringOp::inner_open()
"ColStatNode"))) {
LOG_WARN("fail to create column stats map", K(ret));
}
LOG_TRACE("succeed to open optmizer_stats_gathering op",
LOG_TRACE("succeed to open optimizer_stats_gathering op",
K(ret), K(map_size), K(MY_SPEC.column_ids_.count()), K(MY_SPEC.table_id_));
}
return ret;
@ -353,7 +353,7 @@ int ObOptimizerStatsGatheringOp::calc_column_stats(ObExpr *expr, uint64_t column
ret = OB_ERR_UNEXPECTED;
LOG_WARN("get unexpected null", K(ret));
} else if (!ObColumnStatParam::is_valid_opt_col_type(expr->obj_meta_.get_type())) {
// do nothing yet, shoul use the plain stats.
// do nothing yet, should use the plain stats.
} else if (OB_FAIL(expr->eval(eval_ctx_, datum))) {
LOG_WARN("failed to eval expr", K(*expr));
} else if (OB_ISNULL(datum) ) {