[FEAT MERGE] Merge syslog user experience improvement to master

Co-authored-by: Charles0429 <xiezhenjiang@gmail.com>
Co-authored-by: tino247 <tino247@126.com>
Co-authored-by: chaser-ch <chaser.ch@antgroup.com>
This commit is contained in:
stdliu
2023-02-06 15:52:23 +08:00
committed by ob-robot
parent 1de9266dd0
commit f8c5c2647f
796 changed files with 4465 additions and 3036 deletions

View File

@ -221,7 +221,7 @@ public:
const char *res_ptr = eval_ctx.frames_[(*e)->frame_idx_] + (*e)->res_buf_off_
+ (*e)->res_buf_len_ * idx;
if (datum_ptr != res_ptr) {
SQL_LOG(WARN, "sanity check failure, column index", K(expr_idx), K(idx),
SQL_LOG_RET(WARN, OB_ERR_UNEXPECTED, "sanity check failure, column index", K(expr_idx), K(idx),
KP(datum_ptr), KP(res_ptr), KP(*e), K(eval_ctx));
abort();
}
@ -230,7 +230,7 @@ public:
const char *datum_ptr = datum->ptr_;
const char *res_ptr = eval_ctx.frames_[(*e)->frame_idx_] + (*e)->res_buf_off_;
if (datum_ptr != res_ptr) {
SQL_LOG(WARN, "sanity check failure, column index",
SQL_LOG_RET(WARN, OB_ERR_UNEXPECTED, "sanity check failure, column index",
K(expr_idx), KP(datum_ptr), KP(res_ptr), KP(*e), K(eval_ctx));
abort();
}