From: Mergen Imeev via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: v.shpilevoy@tarantool.org Cc: tarantool-patches@dev.tarantool.org Subject: [Tarantool-patches] [PATCH v2 0/4] Introduce custom aggregate function Date: Tue, 1 Feb 2022 16:37:19 +0300 [thread overview] Message-ID: <cover.1643722506.git.imeevma@gmail.com> (raw) This patch-set introduces user-defined aggregate functions to SQL. Changes in v2: - Patch-set was reworked due to new design. https://github.com/tarantool/tarantool/issues/2579 https://github.com/tarantool/tarantool/tree/imeevma/gh-2579-custom-aggregate-functions Mergen Imeev (4): sql: fix COUNT() optimization conditions sql: drop unnecessary P2 register for OP_AggFinal sql: introduce custom aggregate functions sql: introduce FINALIZE for custom aggregate .../gh-2579-introduce-custom-aggregates.md | 3 + src/box/alter.cc | 13 + src/box/lua/schema.lua | 2 +- src/box/sql/expr.c | 17 +- src/box/sql/func.c | 27 ++- src/box/sql/resolve.c | 12 + src/box/sql/select.c | 42 +++- src/box/sql/sqlInt.h | 6 +- src/box/sql/vdbe.c | 17 +- test/sql-tap/CMakeLists.txt | 2 + test/sql-tap/gh-2579-custom-aggregate.c | 28 +++ .../sql-tap/gh-2579-custom-aggregate.test.lua | 224 ++++++++++++++++++ 12 files changed, 356 insertions(+), 37 deletions(-) create mode 100644 changelogs/unreleased/gh-2579-introduce-custom-aggregates.md create mode 100644 test/sql-tap/gh-2579-custom-aggregate.c create mode 100755 test/sql-tap/gh-2579-custom-aggregate.test.lua -- 2.25.1
next reply other threads:[~2022-02-01 13:37 UTC|newest] Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-02-01 13:37 Mergen Imeev via Tarantool-patches [this message] 2022-02-01 13:37 ` [Tarantool-patches] [PATCH v2 1/4] sql: fix COUNT() optimization conditions Mergen Imeev via Tarantool-patches 2022-02-01 13:37 ` [Tarantool-patches] [PATCH v2 2/4] sql: drop unnecessary P2 register for OP_AggFinal Mergen Imeev via Tarantool-patches 2022-02-01 13:37 ` [Tarantool-patches] [PATCH v2 3/4] sql: introduce custom aggregate functions Mergen Imeev via Tarantool-patches 2022-02-03 23:29 ` Vladislav Shpilevoy via Tarantool-patches 2022-02-01 13:37 ` [Tarantool-patches] [PATCH v2 4/4] sql: introduce FINALIZE for custom aggregate Mergen Imeev via Tarantool-patches 2022-02-03 23:30 ` Vladislav Shpilevoy via Tarantool-patches 2022-02-10 9:21 ` Mergen Imeev via Tarantool-patches
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.1643722506.git.imeevma@gmail.com \ --to=tarantool-patches@dev.tarantool.org \ --cc=imeevma@tarantool.org \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v2 0/4] Introduce custom aggregate function' \ /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