From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp62.i.mail.ru (smtp62.i.mail.ru [217.69.128.42]) (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 456294696C3 for ; Thu, 30 Apr 2020 11:05:18 +0300 (MSK) From: "Timur Safin" References: In-Reply-To: Date: Thu, 30 Apr 2020 11:05:16 +0300 Message-ID: <029501d61ec6$159c6fe0$40d54fa0$@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Content-Language: ru Subject: Re: [Tarantool-patches] [PATCH 0/2] Make TPC-H run again List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: korablev@tarantool.org, imeevma@tarantool.org Cc: tarantool-patches@dev.tarantool.org Wait a minute - ignore this patchset (yet) because I've forgotten to = link issue opened (https://github.com/tarantool/tarantool/issues/2903) = with these commits. I'll edit commit messages and will resend. Timur : -----Original Message----- : From: Timur Safin : Sent: Wednesday, April 29, 2020 8:52 PM : To: korablev@tarantool.org; imeevma@tarantool.org : Cc: tarantool-patches@dev.tarantool.org; Timur Safin : : Subject: [PATCH 0/2] Make TPC-H run again :=20 : NB! This is not going to be submitted, and I'm sending this : patch-set to just make visible all necessary patches, to keep : it for later usage with TPC-H queries we ought to run regularly. :=20 : We restore preliminary DATE types support (right now that would : mean simple STRING) with a set of built-in SQL functions, which : were necessary to make run big chunk (13 out of 22) of SQL TPC-H : benchmark queries. :=20 : There is opinion that we do not want make date support available : as officially supported, to avoid future data migrations, once we : will complete proper datetime types support based on decimals. : So I'll keep these patches handy for foresable future... :=20 : GH issue: https://github.com/tarantool/tarantool/issues/4898 : GitHub branch: : https://github.com/tarantool/tarantool/tree/tsafin/sql-datetime-mocks :=20 : Timur Safin (2): : Restore partial date/time support in Tarantool SQL : Restore date/datetime tests :=20 : extra/mkkeywordhash.c | 10 +-- : src/box/sql/date.c | 70 +++------------ : src/box/sql/dateInt.h | 122 = +++++++++++++++++++++++++++ : src/box/sql/func.c | 49 +++++------ : src/box/sql/parse.y | 27 +++--- : test/sql-tap/date.test.lua | 4 - : test/sql-tap/keyword1.test.lua | 5 +- : test/sql-tap/table.test.lua | 6 +- : test/sql-tap/tkt-7bbfb7d442.test.lua | 4 +- : test/sql-tap/tkt-bd484a090c.test.lua | 6 +- : test/sql-tap/tkt2192.test.lua | 6 +- : test/sql-tap/tkt3791.test.lua | 5 +- : test/sql/triggers.result | 4 +- : test/sql/triggers.test.lua | 4 +- : 14 files changed, 186 insertions(+), 136 deletions(-) : create mode 100644 src/box/sql/dateInt.h :=20 : -- : 2.20.1