Fix some typos (#1742)

* fix typo
This commit is contained in:
jscblack
2023-12-11 16:52:39 +08:00
committed by GitHub
parent 2bfab633de
commit e67f0a904f
32 changed files with 73 additions and 73 deletions

View File

@ -52,7 +52,7 @@ int ObShuffleService::get_partition_ids(ObExecContext &exec_ctx,
const ObIArray<ObTransmitRepartColumn> &repart_sub_columns,
int64_t &part_id,
int64_t &subpart_id,
bool &no_match_partiton)
bool &no_match_partition)
{
int ret = OB_SUCCESS;
if (OB_FAIL(init_expr_ctx(exec_ctx))) {
@ -69,10 +69,10 @@ int ObShuffleService::get_partition_ids(ObExecContext &exec_ctx,
}
if (OB_SUCC(ret)) {
if (part_id == NO_MATCH_PARTITION || subpart_id == NO_MATCH_PARTITION) {
no_match_partiton = true;
no_match_partition = true;
}
}
LOG_DEBUG("get part id and subpart id", K(part_id), K(subpart_id), K(no_match_partiton));
LOG_DEBUG("get part id and subpart id", K(part_id), K(subpart_id), K(no_match_partition));
return ret;
}

View File

@ -63,7 +63,7 @@ public:
const ObIArray<ObTransmitRepartColumn> &repart_sub_columns,
int64_t &part_idx,
int64_t &subpart_idx,
bool &no_match_partiton);
bool &no_match_partition);
// 这个接口仅在px框架下使用, 非px请使用上面接口.
int get_partition_ids(ObExecContext &exec_ctx,
@ -76,7 +76,7 @@ public:
const ObPxPartChMap &ch_map,
int64_t &part_id,
int64_t &subpart_id,
bool &no_match_partiton,
bool &no_match_partition,
ObRepartitionType part_type);
private:
int init_expr_ctx(ObExecContext &exec_ctx);