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 3F1AA2DA1E for ; Tue, 17 Apr 2018 16:36:23 -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 TuZUnLAHOgFS for ; Tue, 17 Apr 2018 16:36:23 -0400 (EDT) Received: from smtp34.i.mail.ru (smtp34.i.mail.ru [94.100.177.94]) (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 9295A2D9EE for ; Tue, 17 Apr 2018 16:36:22 -0400 (EDT) From: Vladislav Shpilevoy Subject: [tarantool-patches] [PATCH 0/2] sql: remove a pair of definitions Date: Tue, 17 Apr 2018 23:36:17 +0300 Message-Id: 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: tarantool-patches@freelists.org Cc: korablev@tarantool.org Branch: http://github.com/tarantool/tarantool/tree/remove-some-defines During digging into possibilities how to remove pTab from struct Expr I have removed some definitions from SQLite and decided, that it can be applied as a separate patch. Vladislav Shpilevoy (2): sql: remove OMIT_EXPLAIN definition sql: remove OMIT_SUBQUERY definition extra/mkkeywordhash.c | 12 +- extra/mkopcodec.tcl | 4 - src/box/sql/complete.c | 8 +- src/box/sql/delete.c | 3 +- src/box/sql/expr.c | 58 +---- src/box/sql/opcodes.c | 4 - src/box/sql/parse.c | 616 +++++++++++++++++++++++----------------------- src/box/sql/parse.y | 208 ++++++++-------- src/box/sql/prepare.c | 2 - src/box/sql/resolve.c | 7 +- src/box/sql/select.c | 85 +------ src/box/sql/sqliteInt.h | 17 +- src/box/sql/treeview.c | 3 - src/box/sql/vdbeInt.h | 11 - src/box/sql/vdbeapi.c | 5 +- src/box/sql/vdbeaux.c | 8 +- src/box/sql/whereInt.h | 4 - src/box/sql/wherecode.c | 10 +- src/box/sql/whereexpr.c | 6 +- test/sql-tap/in1.test.lua | 3 +- 20 files changed, 442 insertions(+), 632 deletions(-) -- 2.15.1 (Apple Git-101)