Fix enum/set insert into values in irregular order

This commit is contained in:
br0
2021-09-16 15:29:54 +08:00
committed by wangzelin.wzl
parent 5df8d9c465
commit d392312a09
4 changed files with 9 additions and 73 deletions

View File

@ -493,10 +493,6 @@ int ObInsertLogPlan::generate_values_op_as_child(ObLogicalOperator*& top)
/*do nothing*/
} else if (OB_FAIL(values_op->add_values_expr(insert_stmt->get_value_vectors()))) {
LOG_WARN("failed to add values expr", K(ret));
} else if (NULL != exec_ctx && NULL != exec_ctx->get_my_session() &&
exec_ctx->get_my_session()->use_static_typing_engine() &&
OB_FAIL(values_op->add_str_values_array(insert_stmt->get_column_conv_functions()))) {
LOG_WARN("fail to add_str_values_array", K(ret));
} else { /*do nothing*/
}
}