From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 78E6E24D23 for ; Fri, 11 May 2018 04:58:16 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id apIu2_K7DP5s for ; Fri, 11 May 2018 04:58:16 -0400 (EDT) Received: from smtp2.mail.ru (smtp2.mail.ru [94.100.179.91]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 353A924D21 for ; Fri, 11 May 2018 04:58:15 -0400 (EDT) Subject: [tarantool-patches] Re: [PATCH v5 0/3] sql: refactor SQL Parser structures References: From: Vladislav Shpilevoy Message-ID: Date: Fri, 11 May 2018 11:58:13 +0300 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-subscribe: List-owner: List-post: List-archive: To: Kirill Shcherbatov , tarantool-patches@freelists.org On 11/05/2018 11:49, Kirill Shcherbatov wrote: > Branch: http://github.com/tarantool/tarantool/tree/gh-3272-no-sql-names > Issue: https://github.com/tarantool/tarantool/issues/3272 Hello. Describe the changes here, and why they are needed. > > Kirill Shcherbatov (3): > sql: fix code style in sqlite3Pragma > sql: remove SQL fields from Table and Column > sql: space_def* instead of Table* in Expr > > src/box/field_def.c | 1 + > src/box/field_def.h | 20 +++ > src/box/space_def.c | 29 ++-- > src/box/sql.c | 134 +++++++++++++---- > src/box/sql.h | 33 +++++ > src/box/sql/alter.c | 55 ++++--- > src/box/sql/analyze.c | 16 +- > src/box/sql/build.c | 378 ++++++++++++++++++++++++++---------------------- > src/box/sql/delete.c | 25 ++-- > src/box/sql/expr.c | 119 ++++++++------- > src/box/sql/fkey.c | 51 +++---- > src/box/sql/hash.c | 5 +- > src/box/sql/hash.h | 2 +- > src/box/sql/insert.c | 106 ++++++++------ > src/box/sql/pragma.c | 96 ++++++------ > src/box/sql/prepare.c | 45 +++--- > src/box/sql/resolve.c | 32 ++-- > src/box/sql/select.c | 183 +++++++++++++---------- > src/box/sql/sqliteInt.h | 78 +++++----- > src/box/sql/tokenize.c | 5 +- > src/box/sql/treeview.c | 2 +- > src/box/sql/trigger.c | 7 +- > src/box/sql/update.c | 58 ++++---- > src/box/sql/util.c | 9 -- > src/box/sql/vdbe.c | 2 +- > src/box/sql/vdbeaux.c | 25 +--- > src/box/sql/where.c | 25 ++-- > src/box/sql/wherecode.c | 23 +-- > src/box/sql/whereexpr.c | 8 +- > 29 files changed, 899 insertions(+), 673 deletions(-) >