fix some typo error

This commit is contained in:
csch
2023-04-07 17:10:22 +08:00
parent d154dc8f4f
commit 8cd9103c3d
4 changed files with 9 additions and 9 deletions

View File

@ -596,7 +596,7 @@ int ObSubPlanFilterOp::switch_iterator()
} else if (OB_FAIL(child_->switch_iterator())) {
//TODO: 目前只支持对非相关子查询做多组迭代器切换,只切换主表
if (OB_ITER_END != ret) {
LOG_WARN("swtich child operator iterator failed", K(ret));
LOG_WARN("switch child operator iterator failed", K(ret));
}
}
@ -918,7 +918,7 @@ int ObSubPlanFilterOp::handle_next_batch_with_px_rescan(const int64_t op_max_bat
}
if (left_rows_total_cnt != left_rows_.get_row_cnt()) {
ret = OB_ERR_UNEXPECTED;
LOG_WARN("left_rows row cnt is unexpectd", K(ret));
LOG_WARN("left_rows row cnt is unexpected", K(ret));
}
}
}
@ -1045,7 +1045,7 @@ int ObSubPlanFilterOp::handle_next_batch_with_group_rescan(const int64_t op_max_
LOG_WARN("prepare rescan params failed", K(ret));
} else if (left_rows_total_cnt != left_rows_.get_row_cnt()) {
ret = OB_ERR_UNEXPECTED;
LOG_WARN("left_rows row cnt is unexpectd", K(ret));
LOG_WARN("left_rows row cnt is unexpected", K(ret));
}
}
@ -1383,7 +1383,7 @@ int ObSubPlanFilterOp::handle_update_set()
}
}
if (OB_SUCC(ret) && OB_FAIL(row_val.store_row_->to_expr(MY_SPEC.update_set_, eval_ctx_))) {
LOG_WARN("failed to get expr from chunck datum store. ", K(ret));
LOG_WARN("failed to get expr from chunk datum store. ", K(ret));
}
}
}

View File

@ -26,7 +26,7 @@ class ObSubPlanScanSpec : public ObOpSpec
public:
ObSubPlanScanSpec(common::ObIAllocator &alloc, const ObPhyOperatorType type);
// project child output to subplan scan column.
// projector_is filled with [child output, scan column] paires, even index is child output,
// projector_is filled with [child output, scan column] pairs, even index is child output,
// odd is scan column. e.g.:
// [child output, scan column, child output, scan column, ...]
ExprFixedArray projector_;