From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng2.m.smailru.net (smtpng2.m.smailru.net [94.100.179.3]) (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 A784C446439 for ; Thu, 15 Oct 2020 02:41:48 +0300 (MSK) References: <42ad1a3a103505e13c78f5e82c84db88c703afd9.1602541394.git.alexander.turenko@tarantool.org> From: Vladislav Shpilevoy Message-ID: <4c0f21e6-9b35-d8ce-bcc1-6e814aea34e9@tarantool.org> Date: Thu, 15 Oct 2020 01:41:47 +0200 MIME-Version: 1.0 In-Reply-To: <42ad1a3a103505e13c78f5e82c84db88c703afd9.1602541394.git.alexander.turenko@tarantool.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [Tarantool-patches] [PATCH v3 05/16] lua: don't raise a Lua error from luaT_tuple_new() List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Turenko Cc: tarantool-patches@dev.tarantool.org Thanks for the patch! > diff --git a/src/box/lua/tuple.c b/src/box/lua/tuple.c > index ed97c85e4..8c3d29f71 100644 > --- a/src/box/lua/tuple.c > +++ b/src/box/lua/tuple.c > @@ -69,6 +69,8 @@ extern char tuple_lua[]; /* Lua source */ > > uint32_t CTID_STRUCT_TUPLE_REF; > > +static int luaT_tuple_encode_table_ref = LUA_NOREF; This probably needs a comment.