code: fix typo (#76)

* Update ob_dtl_rpc_channel.cpp

* Update ob_time_convert.cpp

* Update ob_time_convert.h

* Update ob_expr_date_add.cpp

* fix log spell error:faild -> failled, Faild -> Failed

* Update ob_optimizer_util.cpp

* Update ob_sql.cpp

* Update ob_optimizer_util.cpp

* Update ob_plan_cache_manager.cpp

* Update ob_partition_merge_task.cpp
This commit is contained in:
chuancy
2021-06-15 14:50:25 +08:00
committed by GitHub
parent a55849046f
commit a474a9cf55
36 changed files with 74 additions and 74 deletions

View File

@ -2813,7 +2813,7 @@ int ObOptimizerUtil::classify_get_scan_ranges(const common::ObIArray<ObNewRange>
ret = OB_INVALID_ARGUMENT;
LOG_WARN("table_schema is NULL", K(ret));
} else if (OB_FAIL(deep_copy_range(allocator, input_ranges.at(i), tmp_range))) {
LOG_WARN("failde to deep copy range", K(ret));
LOG_WARN("failed to deep copy range", K(ret));
} else if (OB_FAIL(table_schema->get_rowkey_column_ids(rowkey_descs))) {
LOG_WARN("get rowkey column desc failed", K(ret));
} else if (OB_FAIL(ObTableScan::transform_rowid_range(allocator, rowkey_descs, tmp_range))) {
@ -2822,7 +2822,7 @@ int ObOptimizerUtil::classify_get_scan_ranges(const common::ObIArray<ObNewRange>
LOG_WARN("failed to push back range", K(ret));
}
} else if (OB_FAIL(used_input_ranges.push_back(input_ranges.at(i)))) {
LOG_WARN("failde to push back range", K(ret));
LOG_WARN("failed to push back range", K(ret));
}
if (OB_SUCC(ret)) {
LOG_TRACE("used input range", K(used_input_ranges.at(used_input_ranges.count() - 1)));