From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f193.google.com (mail-lj1-f193.google.com [209.85.208.193]) (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 C4FBF41C5DA for ; Thu, 18 Jun 2020 17:46:56 +0300 (MSK) Received: by mail-lj1-f193.google.com with SMTP id z9so7534912ljh.13 for ; Thu, 18 Jun 2020 07:46:56 -0700 (PDT) Date: Thu, 18 Jun 2020 17:46:53 +0300 From: Cyrill Gorcunov Message-ID: <20200618144653.GR134822@grain> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Tarantool-patches] [PATCH 2/4] xrow: add ability to encode/decode ROLLBACK requests List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Serge Petrenko Cc: tarantool-patches@dev.tarantool.org, v.shpilevoy@tarantool.org > diff --git a/src/box/xrow.c b/src/box/xrow.c > index 896e001b7..7a79a18dd 100644 > --- a/src/box/xrow.c > +++ b/src/box/xrow.c > @@ -879,7 +879,8 @@ xrow_encode_dml(const struct request *request, struct region *region, > } > > int > -xrow_encode_confirm(struct xrow_header *row, uint32_t replica_id, int64_t lsn) > +xrow_encode_confirm_rollback(struct xrow_header *row, uint32_t replica_id, > + int64_t lsn) > { Should not it be a static function?