From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp57.i.mail.ru (smtp57.i.mail.ru [217.69.128.37]) (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 80FCC46970E for ; Fri, 27 Dec 2019 15:37:27 +0300 (MSK) Date: Fri, 27 Dec 2019 14:37:24 +0200 From: Nikita Pettik Message-ID: <20191227123724.GI18639@tarantool.org> References: <63a11f3f-f8aa-166e-feab-85746e8b08a0@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <63a11f3f-f8aa-166e-feab-85746e8b08a0@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v1 0/2] Add DOUBLE type to SQL List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Vladislav Shpilevoy Cc: tarantool-patches@dev.tarantool.org On 23 Dec 20:16, Vladislav Shpilevoy wrote: > Thanks for the patch! LGTM. > > Nikita, please, do a second review. Mergen fixed nits I had noticed. Pushed to master. > On 21/12/2019 17:03, imeevma@tarantool.org wrote: > > This patch-set adds the DOUBLE type to SQL. In the first patch of > > the set, the field type DOUBLE is added to Tarantool. In the > > second patch, the DOUBLE type is added to SQL. > > > > https://github.com/tarantool/tarantool/issues/3812 > > https://github.com/tarantool/tarantool/tree/imeevma/gh-3812-add-double-type > > > > Mergen Imeev (2): > > box: introduce DOUBLE field type > > sql: introduce DOUBLE type > > > > extra/mkkeywordhash.c | 2 +- > > src/box/field_def.c | 28 ++- > > src/box/field_def.h | 1 + > > src/box/sql/expr.c | 6 +- > > src/box/sql/parse.y | 3 +- > > src/box/sql/sqlInt.h | 3 +- > > src/box/sql/vdbe.c | 4 + > > src/box/sql/vdbemem.c | 15 +- > > src/box/tuple_compare.cc | 24 ++ > > test/engine/insert.result | 151 +++++++++++ > > test/engine/insert.test.lua | 51 ++++ > > test/sql/gh-3888-values-blob-assert.result | 4 +- > > test/sql/misc.result | 4 +- > > test/sql/types.result | 390 ++++++++++++++++++++++++++++- > > test/sql/types.test.lua | 66 +++++ > > 15 files changed, 716 insertions(+), 36 deletions(-) > >