From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp14.mail.ru (smtp14.mail.ru [94.100.181.95]) (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 D81CD42F4AD for ; Mon, 22 Jun 2020 11:48:39 +0300 (MSK) Date: Mon, 22 Jun 2020 08:48:38 +0000 From: Nikita Pettik Message-ID: <20200622084838.GB30686@tarantool.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Subject: Re: [Tarantool-patches] [PATCH v2 2/7] sql: remove mem_apply_type() from OP_MakeRecord List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: imeevma@tarantool.org Cc: tarantool-patches@dev.tarantool.org On 17 Jun 15:36, imeevma@tarantool.org wrote: > This patch removes type changing from OP_MakeRecord. Please reflect user-visible changes in commit message. > Part of #4230 > --- > src/box/sql/analyze.c | 7 +------ > src/box/sql/delete.c | 8 ++------ > src/box/sql/expr.c | 8 +------- > src/box/sql/fk_constraint.c | 9 ++------- > src/box/sql/select.c | 25 ++++++------------------- > src/box/sql/update.c | 14 +++----------- > src/box/sql/vdbe.c | 19 +------------------ > test/sql-tap/in3.test.lua | 4 ++-- > 8 files changed, 18 insertions(+), 76 deletions(-) > > diff --git a/test/sql-tap/in3.test.lua b/test/sql-tap/in3.test.lua > index e29db9d93..f7681640e 100755 > --- a/test/sql-tap/in3.test.lua > +++ b/test/sql-tap/in3.test.lua > @@ -354,7 +354,7 @@ test:do_test( > return exec_neph(" SELECT y IN (SELECT a FROM t1) FROM t2 ") > end, { > -- > - 1, true > + 1, false > -- > }) > > @@ -378,7 +378,7 @@ test:do_test( > return exec_neph(" SELECT y IN (SELECT c FROM t1) FROM t2 ") > end, { > -- > - 1, true > + 1, false > -- > }) > > -- > 2.25.1 >