From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp56.i.mail.ru (smtp56.i.mail.ru [217.69.128.36]) (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 B91134429E1 for ; Wed, 1 Jul 2020 17:02:03 +0300 (MSK) Date: Wed, 1 Jul 2020 17:02:03 +0300 From: Sergey Bronnikov Message-ID: <20200701140203.GA5305@pony.bronevichok.ru> References: <74a467b7-396f-ee31-8539-b9f47c4e1d85@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <74a467b7-396f-ee31-8539-b9f47c4e1d85@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH 6/6] Fix luacheck warnings in src/box/lua/ List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Vladislav Shpilevoy Cc: alexander.turenko@tarantool.org, tarantool-patches@dev.tarantool.org On 01:15 Sat 20 Jun , Vladislav Shpilevoy wrote: > > diff --git a/src/box/lua/schema.lua b/src/box/lua/schema.lua > > index e6844b45f..c104dd9c7 100644 > > --- a/src/box/lua/schema.lua > > +++ b/src/box/lua/schema.lua > > @@ -1555,7 +1553,7 @@ end > > > > base_index_mt.select_luac = function(index, key, opts) > > check_index_arg(index, 'select') > > - local key = keify(key) > > + key = keify(key) > > Unnecessary diff. > Reverted in a branch -- sergeyb@