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 A6DCA2B2DC for ; Tue, 9 Apr 2019 13:17:04 -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 siIzgfEHgzTt for ; Tue, 9 Apr 2019 13:17:04 -0400 (EDT) Received: from smtpng1.m.smailru.net (smtpng1.m.smailru.net [94.100.181.251]) (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 F2DE72B2B6 for ; Tue, 9 Apr 2019 13:17:03 -0400 (EDT) From: imeevma@tarantool.org Subject: [tarantool-patches] [PATCH v1 0/3] sql: remove unused code from SQL Date: Tue, 9 Apr 2019 20:17:01 +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: korablev@tarantool.org Cc: tarantool-patches@freelists.org This patch-set removes part of unused code from SQL. That is needed for #4074. https://github.com/tarantool/tarantool/issues/4074 https://github.com/tarantool/tarantool/tree/imeevma/gh-4074-remove-unused-code Mergen Imeev (3): sql: remove legacy.c sql: remove unused macros in SQL sql: remove unused functions from main.c src/box/sql/CMakeLists.txt | 1 - src/box/sql/analyze.c | 12 +- src/box/sql/build.c | 2 - src/box/sql/expr.c | 8 - src/box/sql/fault.c | 6 - src/box/sql/func.c | 10 - src/box/sql/global.c | 9 +- src/box/sql/legacy.c | 187 ------- src/box/sql/main.c | 1186 +------------------------------------------- src/box/sql/malloc.c | 21 - src/box/sql/os.c | 14 - src/box/sql/os_unix.c | 5 - src/box/sql/prepare.c | 4 - src/box/sql/printf.c | 35 -- src/box/sql/random.c | 14 - src/box/sql/select.c | 2 - src/box/sql/sqlInt.h | 108 +--- src/box/sql/status.c | 25 +- src/box/sql/treeview.c | 2 - src/box/sql/update.c | 2 - src/box/sql/util.c | 41 -- src/box/sql/vdbe.c | 24 - src/box/sql/vdbeInt.h | 4 - src/box/sql/vdbeapi.c | 15 - src/box/sql/vdbeaux.c | 29 +- src/box/sql/vdbemem.c | 8 - 26 files changed, 20 insertions(+), 1754 deletions(-) delete mode 100644 src/box/sql/legacy.c -- 2.7.4