This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 3d6a13605d [improvement](stacktrace) do not captute stack trace for txn error codes (#19817) 3d6a13605d is described below commit 3d6a13605d20dd893cde3cf978b183b60d30379c Author: Yongqiang YANG <98214048+dataroar...@users.noreply.github.com> AuthorDate: Thu May 18 23:58:56 2023 +0800 [improvement](stacktrace) do not captute stack trace for txn error codes (#19817) --- be/src/common/status.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/be/src/common/status.h b/be/src/common/status.h index d60e103727..486fdc7f9e 100644 --- a/be/src/common/status.h +++ b/be/src/common/status.h @@ -293,7 +293,11 @@ constexpr bool capture_stacktrace() { && code != ErrorCode::INVERTED_INDEX_FILE_HIT_LIMIT && code != ErrorCode::INVERTED_INDEX_NO_TERMS && code != ErrorCode::META_KEY_NOT_FOUND - && code != ErrorCode::PUSH_VERSION_ALREADY_EXIST; + && code != ErrorCode::PUSH_VERSION_ALREADY_EXIST + && code != ErrorCode::TRANSACTION_NOT_EXIST + && code != ErrorCode::TRANSACTION_ALREADY_VISIBLE + && code != ErrorCode::TOO_MANY_TRANSACTIONS + && code != ErrorCode::TRANSACTION_ALREADY_COMMITTED; } // clang-format on --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org