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 AA0D8246D0 for ; Tue, 15 May 2018 13:03:26 -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 JsuaU7RMjVXB for ; Tue, 15 May 2018 13:03:26 -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 03EA6246C1 for ; Tue, 15 May 2018 13:03:25 -0400 (EDT) From: Kirill Shcherbatov Subject: [tarantool-patches] [PATCH v6 0/4] sql: moved Checks to server Date: Tue, 15 May 2018 20:03: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: v.shpilevoy@tarantool.org, Kirill Shcherbatov Branch: http://github.com/tarantool/tarantool/tree/gh-3272-no-sql-checks Issue: https://github.com/tarantool/tarantool/issues/3272 Kirill Shcherbatov (4): sql: fix code style in sqlite3Pragma sql: remove SQL fields from Table and Column sql: space_def* instead of Table* in Expr sql: remove Checks to server src/box/alter.cc | 11 + src/box/field_def.c | 1 + src/box/field_def.h | 20 ++ src/box/key_def.cc | 2 +- src/box/opt_def.c | 16 +- src/box/opt_def.h | 8 +- src/box/space_def.c | 135 +++++++++-- src/box/space_def.h | 24 ++ src/box/sql.c | 225 +++++++++++++++--- src/box/sql.h | 125 +++++++++- src/box/sql/alter.c | 59 +++-- src/box/sql/analyze.c | 18 +- src/box/sql/build.c | 553 +++++++++++++++++++++++--------------------- src/box/sql/delete.c | 31 +-- src/box/sql/expr.c | 215 ++++++++--------- src/box/sql/fkey.c | 71 +++--- src/box/sql/hash.c | 10 +- src/box/sql/hash.h | 2 +- src/box/sql/insert.c | 138 ++++++----- src/box/sql/parse.y | 86 +++---- src/box/sql/pragma.c | 96 ++++---- src/box/sql/pragma.h | 2 - src/box/sql/prepare.c | 52 +++-- src/box/sql/resolve.c | 71 +++--- src/box/sql/select.c | 245 ++++++++++++-------- src/box/sql/sqliteInt.h | 81 ++----- src/box/sql/tokenize.c | 12 +- src/box/sql/treeview.c | 2 +- src/box/sql/trigger.c | 20 +- src/box/sql/update.c | 60 ++--- src/box/sql/util.c | 9 - src/box/sql/vdbe.c | 28 +-- src/box/sql/vdbeaux.c | 34 --- src/box/sql/vdbemem.c | 18 +- src/box/sql/where.c | 27 ++- src/box/sql/wherecode.c | 53 +++-- src/box/sql/whereexpr.c | 19 +- test/sql-tap/check.test.lua | 13 +- 38 files changed, 1540 insertions(+), 1052 deletions(-) -- 2.7.4