[CP][BUGFIX] fix lrpad mysql pad len zero
This commit is contained in:
@ -552,11 +552,11 @@ int ObExprBaseLRpad::calc_mysql_inner(const LRpadType pad_type,
|
||||
// only substr needed
|
||||
result_size = ObCharset::charpos(cs_type, str_text.ptr(), str_text.length(), int_len);
|
||||
res.set_string(ObString(result_size, str_text.ptr()));
|
||||
} else if (str_pad.length() == 0) {
|
||||
res.set_null(); // mysql 5.7 return null while mysql 8.0 return empty string
|
||||
} else {
|
||||
has_set_to_lob_locator = true;
|
||||
if (str_pad.length() == 0) {
|
||||
res.set_string(ObString::make_empty_string());
|
||||
} else if (OB_FAIL(get_padding_info_mysql(cs_type, str_text, int_len, str_pad,
|
||||
if (OB_FAIL(get_padding_info_mysql(cs_type, str_text, int_len, str_pad,
|
||||
max_result_size, repeat_count, prefix_size, result_size))) {
|
||||
LOG_WARN("Failed to get padding info", K(ret), K(str_text), K(int_len),
|
||||
K(str_pad), K(max_result_size));
|
||||
|
||||
Reference in New Issue
Block a user