From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f172.google.com (mail-lj1-f172.google.com [209.85.208.172]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 07B61445320 for ; Thu, 23 Jul 2020 15:58:04 +0300 (MSK) Received: by mail-lj1-f172.google.com with SMTP id s9so6193750ljm.11 for ; Thu, 23 Jul 2020 05:58:04 -0700 (PDT) From: Cyrill Gorcunov Date: Thu, 23 Jul 2020 15:57:58 +0300 Message-Id: <20200723125758.203276-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH] iproto: stringify IPROTO_CONFIRM, IPROTO_ROLLBACK List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tml Cc: Vladislav Shpilevoy Fixes #5199 Signed-off-by: Cyrill Gorcunov --- branch gorcunov/gh-5199-xlog-syncro src/box/iproto_constants.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/box/iproto_constants.h b/src/box/iproto_constants.h index 6b850f101..4f5a2b195 100644 --- a/src/box/iproto_constants.h +++ b/src/box/iproto_constants.h @@ -276,6 +276,10 @@ iproto_type_name(uint32_t type) return iproto_type_strs[type]; switch (type) { + case IPROTO_CONFIRM: + return "CONFIRM"; + case IPROTO_ROLLBACK: + return "ROLLBACK"; case VY_INDEX_RUN_INFO: return "RUNINFO"; case VY_INDEX_PAGE_INFO: -- 2.26.2