From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp44.i.mail.ru (smtp44.i.mail.ru [94.100.177.104]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 4FD9A445320 for ; Wed, 15 Jul 2020 19:23:28 +0300 (MSK) Date: Wed, 15 Jul 2020 16:23:27 +0000 From: Nikita Pettik Message-ID: <20200715162327.GF26087@tarantool.org> References: <1594821336-14468-1-git-send-email-alyapunov@tarantool.org> <1594821336-14468-6-git-send-email-alyapunov@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1594821336-14468-6-git-send-email-alyapunov@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v3 05/13] txm: save txn in txn_stmt List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Aleksandr Lyapunov Cc: tarantool-patches@dev.tarantool.org On 15 Jul 16:55, Aleksandr Lyapunov wrote: > There is a lot of places in transaction engine (see futher commits) > where it's convenient to store just a pointer to tx statement while > having a way to get the transaction itself by this pointer. > Let's store a pointer to TX in TX statement for that purpose. > > Part of #4897 > --- LGTM