replace ts related to ddl with scn.
This commit is contained in:
@ -27,6 +27,7 @@
|
||||
#include "sql/optimizer/ob_log_sort.h"
|
||||
#include "sql/rewrite/ob_transform_utils.h"
|
||||
#include "sql/optimizer/ob_insert_log_plan.h"
|
||||
#include "common/ob_smart_call.h"
|
||||
|
||||
using namespace oceanbase;
|
||||
using namespace sql;
|
||||
@ -251,7 +252,7 @@ int ObLogInsert::re_est_cost(EstimateCostInfo ¶m, double &card, double &cost
|
||||
double child_card = child->get_card();
|
||||
double child_cost = child->get_cost();
|
||||
double op_cost = 0.0;
|
||||
if (OB_FAIL(child->re_est_cost(param, child_card, child_cost))) {
|
||||
if (OB_FAIL(SMART_CALL(child->re_est_cost(param, child_card, child_cost)))) {
|
||||
LOG_WARN("failed to re est exchange cost", K(ret));
|
||||
} else if (OB_FAIL(inner_est_cost(child_card, op_cost))) {
|
||||
LOG_WARN("failed to get insert cost", K(ret));
|
||||
|
||||
Reference in New Issue
Block a user