From: Kirill Shcherbatov <kshcherbatov@tarantool.org> To: tarantool-patches@freelists.org Cc: v.shpilevoy@tarantool.org, Kirill Shcherbatov <kshcherbatov@tarantool.org> Subject: [tarantool-patches] [PATCH v4 0/7] sql: refactor SQL Parser structures Date: Sat, 28 Apr 2018 21:26:51 +0300 [thread overview] Message-ID: <cover.1524939874.git.kshcherbatov@tarantool.org> (raw) In-Reply-To: <cover.1524675028.git.kshcherbatov@tarantool.org> Branch: http://github.com/tarantool/tarantool/tree/gh-3272-no-sql-names Issue: https://github.com/tarantool/tarantool/issues/3272 Kirill Shcherbatov (7): sql: fix code style in sqlite3Pragma sql: remove zName and nColumn from SQL sql: start using type from space_def sql: start using collations and is_nullable from space_def sql: move names to server sql: start using is_view field from space_def sql: space_def* instead of Table* in Expr src/box/field_def.c | 1 + src/box/field_def.h | 5 + src/box/space_def.c | 29 ++-- src/box/sql.c | 156 +++++++++++++++++---- src/box/sql.h | 32 +++++ src/box/sql/alter.c | 54 ++++--- src/box/sql/analyze.c | 16 ++- src/box/sql/build.c | 364 ++++++++++++++++++++++++++---------------------- src/box/sql/delete.c | 25 ++-- src/box/sql/expr.c | 65 +++++---- src/box/sql/fkey.c | 51 ++++--- src/box/sql/hash.c | 5 +- src/box/sql/insert.c | 88 ++++++------ src/box/sql/pragma.c | 96 +++++++------ src/box/sql/prepare.c | 26 ++-- src/box/sql/resolve.c | 33 +++-- src/box/sql/select.c | 185 +++++++++++++----------- src/box/sql/sqliteInt.h | 37 ++--- src/box/sql/tokenize.c | 3 + src/box/sql/treeview.c | 2 +- src/box/sql/trigger.c | 6 +- src/box/sql/update.c | 52 +++---- src/box/sql/util.c | 9 -- src/box/sql/vdbe.c | 2 +- src/box/sql/vdbeaux.c | 19 ++- src/box/sql/where.c | 24 ++-- src/box/sql/wherecode.c | 23 +-- src/box/sql/whereexpr.c | 8 +- 28 files changed, 831 insertions(+), 585 deletions(-) -- 2.7.4
next prev parent reply other threads:[~2018-04-28 18:27 UTC|newest] Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-04-25 16:52 [tarantool-patches] [PATCH v3 0/4] sql: Removed Column fields to server with region allocations Kirill Shcherbatov 2018-04-25 16:52 ` [tarantool-patches] [PATCH v3 1/4] sql: Fix code style in sqlite3Pragma Kirill Shcherbatov 2018-04-26 11:47 ` [tarantool-patches] " Vladislav Shpilevoy 2018-04-25 16:52 ` [tarantool-patches] [PATCH v3 2/4] sql: Remove zName and nColumn from SQL Kirill Shcherbatov 2018-04-25 17:10 ` [tarantool-patches] " Kirill Shcherbatov 2018-04-26 12:12 ` Vladislav Shpilevoy 2018-04-26 11:47 ` Vladislav Shpilevoy 2018-04-25 16:52 ` [tarantool-patches] [PATCH v3 3/4] sql: Removed type " Kirill Shcherbatov 2018-04-25 16:52 ` [tarantool-patches] [PATCH v3 4/4] sql: Region-based allocations Kirill Shcherbatov 2018-04-26 11:47 ` [tarantool-patches] " Vladislav Shpilevoy 2018-04-26 11:47 ` [tarantool-patches] Re: [PATCH v3 0/4] sql: Removed Column fields to server with region allocations Vladislav Shpilevoy 2018-04-28 18:26 ` Kirill Shcherbatov [this message] 2018-04-28 18:26 ` [tarantool-patches] [PATCH v4 1/7] sql: fix code style in sqlite3Pragma Kirill Shcherbatov 2018-05-03 10:10 ` [tarantool-patches] " Vladislav Shpilevoy 2018-04-28 18:26 ` [tarantool-patches] [PATCH v4 2/7] sql: remove zName and nColumn from SQL Kirill Shcherbatov 2018-05-03 10:10 ` [tarantool-patches] " Vladislav Shpilevoy 2018-04-28 18:26 ` [tarantool-patches] [PATCH v4 3/7] sql: start using type from space_def Kirill Shcherbatov 2018-04-28 18:26 ` [tarantool-patches] [PATCH v4 4/7] sql: start using collations and is_nullable " Kirill Shcherbatov 2018-05-03 10:21 ` [tarantool-patches] " Vladislav Shpilevoy 2018-04-28 18:26 ` [tarantool-patches] [PATCH v4 5/7] sql: move names to server Kirill Shcherbatov 2018-05-03 11:08 ` [tarantool-patches] " Vladislav Shpilevoy 2018-04-28 18:26 ` [tarantool-patches] [PATCH v4 6/7] sql: start using is_view field from space_def Kirill Shcherbatov 2018-05-03 11:16 ` [tarantool-patches] " Vladislav Shpilevoy 2018-04-28 18:26 ` [tarantool-patches] [PATCH v4 7/7] sql: space_def* instead of Table* in Expr Kirill Shcherbatov 2018-05-03 11:32 ` [tarantool-patches] " Vladislav Shpilevoy 2018-05-03 10:10 ` [tarantool-patches] Re: [PATCH v4 0/7] sql: refactor SQL Parser structures Vladislav Shpilevoy
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=cover.1524939874.git.kshcherbatov@tarantool.org \ --to=kshcherbatov@tarantool.org \ --cc=tarantool-patches@freelists.org \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [tarantool-patches] [PATCH v4 0/7] sql: refactor SQL Parser structures' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox