From: Vladislav Shpilevoy <v.shpilevoy@tarantool.org>
To: Kirill Shcherbatov <kshcherbatov@tarantool.org>,
tarantool-patches@freelists.org
Subject: [tarantool-patches] Re: [PATCH v2 1/1] sql: support HAVING without GROUP BY clause
Date: Fri, 30 Nov 2018 20:22:37 +0300 [thread overview]
Message-ID: <2a59a404-d305-3be3-6c11-5be0d1a06363@tarantool.org> (raw)
In-Reply-To: <bd050d940bcea8202a5357de15a2fb76950b56ba.1543501922.git.kshcherbatov@tarantool.org>
Hi! Thanks for the patch!
1. Can not build (2.1 builds ok).
/Users/v.shpilevoy/Work/Repositories/tarantool/src/httpc.c:337:7: error: duplicate case value 'CURLE_PEER_FAILED_VERIFICATION'
case CURLE_PEER_FAILED_VERIFICATION:
^
/Users/v.shpilevoy/Work/Repositories/tarantool/src/httpc.c:336:7: note: previous case defined here
case CURLE_SSL_CACERT:
^
/usr/local/opt/curl/include/curl/curl.h:589:26: note: expanded from macro 'CURLE_SSL_CACERT'
#define CURLE_SSL_CACERT CURLE_PEER_FAILED_VERIFICATION
2. Please, rebase. The patch is very old. Many things have changed since
September.
On 29/11/2018 17:33, Kirill Shcherbatov wrote:
> Branch: http://github.com/tarantool/tarantool/tree/kshsh/gh-2364-having-without-groupby
> Issue: https://github.com/tarantool/tarantool/issues/2364
>
> Allowed to make SELECT requests that have HAVING clause without
> GROUP BY. It is possible when both - left and right parts of
> request have aggregate function or constant value.
>
> Closes #2364.
>
> @TarantoolBot document
> Title: HAVING without GROUP BY clause
> A query with a having clause should also have a group by clause.
> If you omit group by, all the rows not excluded by the where
> clause return as a single group.
> Because no grouping is performed between the where and having
> clauses, they cannot act independently of each other. Having
> acts like where because it affects the rows in a single group
> rather than groups, except the having clause can still use
> aggregates.
> Having without group by is not supported for select from
> multiple tables.
> ---
> src/box/sql/resolve.c | 97 +++++++++++++++++++++++---
> src/box/sql/sqliteInt.h | 3 +-
> test/sql-tap/count.test.lua | 8 +--
> test/sql-tap/select3.test.lua | 2 +-
> test/sql-tap/select5.test.lua | 128 +++++++++++++++++++++++++++++++++-
> 5 files changed, 223 insertions(+), 15 deletions(-)
>
> diff --git a/src/box/sql/resolve.c b/src/box/sql/resolve.c
> index 9a2d6ff4e..34f0c836a 100644
> --- a/src/box/sql/resolve.c
> +++ b/src/box/sql/resolve.c
> @@ -602,6 +602,8 @@ resolveExprStep(Walker * pWalker, Expr * pExpr)
> /* A lone identifier is the name of a column.
> */
> case TK_ID:{
> + if ((pNC->ncFlags & NC_AllowAgg) != 0)
> + pNC->ncFlags |= NC_HasUnaggregatedId;
> return lookupName(pParse, 0, pExpr->u.zToken, pNC,
> pExpr);
> }
> @@ -1180,6 +1182,50 @@ resolveOrderGroupBy(NameContext * pNC, /* The name context of the SELECT stateme
> return sqlite3ResolveOrderGroupBy(pParse, pSelect, pOrderBy, zType);
> }
>
> +/**
> + * Test if specified expression is a regular literal.
> + * @param expr Expression to analyse.
> + * @retval true If expression is literal.
> + * @retval false Otherwise.
> + */
> +static bool
> +sql_expr_is_literal(struct Expr *expr)
> +{
> + return expr->op == TK_INTEGER || expr->op == TK_FLOAT ||
> + expr->op == TK_BLOB || expr->op == TK_STRING ||
> + expr->op == TK_NULL || expr->op == TK_UMINUS;
> +}
> +
> +/**
> + * Test if specified expression is a constant function.
> + * @param parser Parsing context.
> + * @param expr Expression to analyse.
> + * @retval true If expression is a existent constant function.
> + * @retval false Otherwise.
> + */
> +static bool
> +sql_expr_is_constant_func(struct Parse *parser, struct Expr *expr)
> +{
> + if (expr->op != TK_FUNCTION)
> + return false;
> + char *func_name = expr->u.zToken;
> + struct ExprList *args_list = expr->x.pList;
> + int args_count = args_list != NULL ? args_list->nExpr : 0;
> + struct FuncDef *func =
> + sqlite3FindFunction(parser->db, func_name, args_count, 0);
> + if (func == NULL) {
> + /*
> + * If we fail to find function with exact number
> + * of arguments, lets try to search similar
> + * function but with different number of args.
> + */
> + func = sqlite3FindFunction(parser->db, func_name, -2, 0);
> + if (func == NULL)
> + return false;
> + }
> + return (func->funcFlags & SQLITE_FUNC_CONSTANT) != 0;
> +}
> +
> /*
> * Resolve names in the SELECT statement p and all of its descendants.
> */
> @@ -1285,13 +1331,23 @@ resolveSelectStep(Walker * pWalker, Select * p)
> /* Set up the local name-context to pass to sqlite3ResolveExprNames() to
> * resolve the result-set expression list.
> */
> + bool is_all_select_agg = true;
> sNC.ncFlags = NC_AllowAgg;
> sNC.pSrcList = p->pSrc;
> sNC.pNext = pOuterNC;
> -
> /* Resolve names in the result set. */
> - if (sqlite3ResolveExprListNames(&sNC, p->pEList))
> - return WRC_Abort;
> + for (i = 0; i < p->pEList->nExpr; i++) {
> + struct Expr *expr = p->pEList->a[i].pExpr;
> + u16 has_agg_flag = sNC.ncFlags & NC_HasAgg;
> + sNC.ncFlags &= ~NC_HasAgg;
> + if (sqlite3ResolveExprNames(&sNC, expr))
> + return WRC_Abort;
> + is_all_select_agg &= (sNC.ncFlags & NC_HasAgg) != 0 ||
> + sql_expr_is_literal(expr) ||
> + sql_expr_is_constant_func(pParse,
> + expr);
> + sNC.ncFlags |= has_agg_flag;
> + }
>
> /* If there are no aggregate functions in the result-set, and no GROUP BY
> * expression, do not allow aggregates in any of the other expressions.
> @@ -1306,12 +1362,37 @@ resolveSelectStep(Walker * pWalker, Select * p)
> sNC.ncFlags &= ~NC_AllowAgg;
> }
>
> - /* If a HAVING clause is present, then there must be a GROUP BY clause.
> + /*
> + * If a HAVING clause is present, then there must
> + * be a GROUP BY clause or aggregate function
> + * should be specified.
> */
> - if (p->pHaving && !pGroupBy) {
> - sqlite3ErrorMsg(pParse,
> - "a GROUP BY clause is required before HAVING");
> - return WRC_Abort;
> + if (p->pHaving != NULL && pGroupBy == NULL) {
> + struct NameContext having_nc;
> + memset(&having_nc, 0, sizeof(having_nc));
> + having_nc.pParse = pParse;
> + having_nc.ncFlags = NC_AllowAgg;
> + having_nc.pSrcList = p->pSrc;
> + if (is_all_select_agg &&
> + sqlite3ResolveExprNames(&having_nc,
> + p->pHaving) != 0)
> + return WRC_Abort;
> + if ((having_nc.ncFlags & NC_HasAgg) == 0 ||
> + (having_nc.ncFlags & NC_HasUnaggregatedId) != 0) {
> + const char *err_msg =
> + tt_sprintf("HAVING argument must "
> + "appear in the GROUP BY "
> + "clause or be used in an "
> + "aggregate function");
> + diag_set(ClientError, ER_SQL, err_msg);
> + pParse->nErr++;
> + pParse->rc = SQL_TARANTOOL_ERROR;
> + return WRC_Abort;
> + }
> + sql_expr_delete(db, p->pLimit, false);
> + p->pLimit =
> + sqlite3ExprAlloc(db, TK_INTEGER,
> + &sqlite3IntTokens[1], 0);
> }
>
> /* Add the output column list to the name-context before parsing the
> diff --git a/src/box/sql/sqliteInt.h b/src/box/sql/sqliteInt.h
> index dbf58d967..8f0e0a320 100644
> --- a/src/box/sql/sqliteInt.h
> +++ b/src/box/sql/sqliteInt.h
> @@ -2454,7 +2454,8 @@ struct NameContext {
> #define NC_IdxExpr 0x0020 /* True if resolving columns of CREATE INDEX */
> #define NC_VarSelect 0x0040 /* A correlated subquery has been seen */
> #define NC_MinMaxAgg 0x1000 /* min/max aggregates seen. See note above */
> -
> +/** One or more identifiers seen without aggregate function. */
> +#define NC_HasUnaggregatedId 0x2000
> /*
> * An instance of the following structure contains all information
> * needed to generate code for a single SELECT statement.
> diff --git a/test/sql-tap/count.test.lua b/test/sql-tap/count.test.lua
> index b05e3a28e..6f58210f4 100755
> --- a/test/sql-tap/count.test.lua
> +++ b/test/sql-tap/count.test.lua
> @@ -172,15 +172,15 @@ test:do_test(
> return uses_op_count("SELECT count(*) FROM t2 WHERE a IS NOT NULL")
> end, 0)
>
> -test:do_catchsql_test(
> +test:do_execsql_test(
> "count-2.9",
> [[
> SELECT count(*) FROM t2 HAVING count(*)>1
> - ]], {
> + ]],
> -- <count-2.9>
> - 1, "a GROUP BY clause is required before HAVING"
> + {}
> -- </count-2.9>
> - })
> + )
>
> test:do_test(
> "count-2.10",
> diff --git a/test/sql-tap/select3.test.lua b/test/sql-tap/select3.test.lua
> index dbc95f0d8..2704c267e 100755
> --- a/test/sql-tap/select3.test.lua
> +++ b/test/sql-tap/select3.test.lua
> @@ -200,7 +200,7 @@ test:do_catchsql_test("select3-3.1", [[
> SELECT log, count(*) FROM t1 HAVING log>=4
> ]], {
> -- <select3-3.1>
> - 1, "a GROUP BY clause is required before HAVING"
> + 1, "SQL error: HAVING argument must appear in the GROUP BY clause or be used in an aggregate function"
> -- </select3-3.1>
> })
>
> diff --git a/test/sql-tap/select5.test.lua b/test/sql-tap/select5.test.lua
> index 9c3cd2759..b889132aa 100755
> --- a/test/sql-tap/select5.test.lua
> +++ b/test/sql-tap/select5.test.lua
> @@ -1,6 +1,6 @@
> #!/usr/bin/env tarantool
> test = require("sqltester")
> -test:plan(32)
> +test:plan(44)
>
> --!./tcltestrunner.lua
> -- 2001 September 15
> @@ -412,5 +412,131 @@ test:do_execsql_test(
> -- </select5-8.8>
> })
>
> +--
> +-- gh-2364: Support HAVING without GROUP BY clause.
> +--
> +test:do_catchsql_test(
> + "select5-9.1",
> + [[
> + CREATE TABLE te40 (s1 INT, s2 INT, PRIMARY KEY (s1,s2));
> + INSERT INTO te40 VALUES (1,1);
> + INSERT INTO te40 VALUES (2,2);
> + SELECT s1 FROM te40 HAVING s1 = 1;
> + ]], {
> + -- <select5-9.1>
> + 1, "SQL error: HAVING argument must appear in the GROUP BY clause or be used in an aggregate function"
> + -- </select5-9.1>
> +})
> +
> +test:do_catchsql_test(
> + "select5-9.2",
> + [[
> + SELECT SUM(s1) FROM te40 HAVING s1 = 2;
> + ]], {
> + -- <select5-9.2>
> + 1, "SQL error: HAVING argument must appear in the GROUP BY clause or be used in an aggregate function"
> + -- </select5-9.2>
> +})
> +
> +test:do_catchsql_test(
> + "select5-9.3",
> + [[
> + SELECT s1 FROM te40 HAVING SUM(s1) = 2;
> + ]], {
> + -- <select5-9.3>
> + 1, "SQL error: HAVING argument must appear in the GROUP BY clause or be used in an aggregate function"
> + -- </select5-9.3>
> +})
> +
> +test:do_execsql_test(
> + "select5-9.4",
> + [[
> + SELECT SUM(s1) FROM te40 HAVING SUM(s1) > 0;
> + ]], {
> + -- <select5-9.4>
> + 3
> + -- </select5-9.4>
> +})
> +
> +test:do_execsql_test(
> + "select5-9.5",
> + [[
> + SELECT MIN(s1) FROM te40 HAVING SUM(s1) > 0;
> + ]], {
> + -- <select5-9.5>
> + 1
> + -- </select5-9.5>
> +})
> +
> +test:do_execsql_test(
> + "select5-9.6",
> + [[
> + SELECT SUM(s1) FROM te40 HAVING SUM(s1) < 0;
> + ]],
> + -- <select5-9.6>
> + {}
> + -- </select5-9.6>
> +)
> +
> +test:do_catchsql_test(
> + "select5-9.7",
> + [[
> + SELECT SUM(s1),s2 FROM te40 HAVING SUM(s1) > 0;
> + ]], {
> + -- <select5-9.7>
> + 1, "SQL error: HAVING argument must appear in the GROUP BY clause or be used in an aggregate function"
> + -- </select5-9.7>
> +})
> +
> +test:do_catchsql_test(
> + "select5-9.8",
> + [[
> + SELECT SUM(s1) FROM te40 HAVING SUM(s1) > 0 and s2 > 0;
> + ]], {
> + -- <select5-9.8>
> + 1, "SQL error: HAVING argument must appear in the GROUP BY clause or be used in an aggregate function"
> + -- </select5-9.8>
> +})
> +
> +test:do_execsql_test(
> + "select5-9.9",
> + [[
> + SELECT SUM(s1) FROM te40 HAVING SUM(s1) > 0 and SUM(s2) > 0;
> + ]], {
> + -- <select5-9.9>
> + 3
> + -- </select5-9.9>
> +})
> +
> +test:do_execsql_test(
> + "select5-9.10",
> + [[
> + SELECT 1 FROM te40 HAVING SUM(s1) > 0;
> + ]], {
> + -- <select5-9.10>
> + 1
> + -- </select5-9.10>
> +})
> +
> +test:do_execsql_test(
> + "select5-9.11",
> + [[
> + SELECT -1 FROM te40 HAVING SUM(s1) > 0;
> + ]], {
> + -- <select5-9.11>
> + -1
> + -- </select5-9.11>
> +})
> +
> +test:do_execsql_test(
> + "select5-9.12",
> + [[
> + SELECT NULL FROM te40 HAVING SUM(s1) > 0;
> + ]], {
> + -- <select5-9.12>
> + ""
> + -- </select5-9.12>
> +})
> +
> test:finish_test()
>
>
next prev parent reply other threads:[~2018-11-30 17:22 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-29 14:33 [tarantool-patches] " Kirill Shcherbatov
2018-11-30 17:22 ` Vladislav Shpilevoy [this message]
2018-11-30 17:32 ` [tarantool-patches] " Kirill Shcherbatov
2018-12-03 20:45 ` Vladislav Shpilevoy
[not found] ` <a5ca7201-7b45-3b97-ddb9-93216a4682a2@tarantool.org>
2018-12-10 14:23 ` Vladislav Shpilevoy
[not found] ` <61be199c-a233-aac3-18ee-fa64c908126d@tarantool.org>
2018-12-25 12:59 ` Kirill Shcherbatov
2018-12-28 14:39 ` n.pettik
2018-12-26 11:19 ` Vladislav Shpilevoy
2018-12-29 14:58 ` Kirill Yukhin
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=2a59a404-d305-3be3-6c11-5be0d1a06363@tarantool.org \
--to=v.shpilevoy@tarantool.org \
--cc=kshcherbatov@tarantool.org \
--cc=tarantool-patches@freelists.org \
--subject='[tarantool-patches] Re: [PATCH v2 1/1] sql: support HAVING without GROUP BY clause' \
/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