summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorVarun Gupta <varun.gupta@mariadb.com>2020-08-10 14:11:58 +0530
committerVarun Gupta <varun.gupta@mariadb.com>2020-08-13 12:24:14 +0530
commit696edd9e7e4119cb54fa1019b0dc7eebbfce31d6 (patch)
treee819f7605c443c1067281a722e10f3a3ca34e841 /sql
parentc6686d2cd65dc31b9ec56ef695e8d2f4dc34e48f (diff)
downloadmariadb-git-10.2-varun.tar.gz
MDEV-23438: Assertion `!field->is_null()' failed in my_decimal::my_decimal fails in ONLY_FULL_GROUP_BY mode10.2-varun
The issue here is query with aggregate function and non-aggregate field in the SELECT LIST with ONLY_FULL_GROUP_BY was not disallowed. In ONLY_FULL_GROUP_BY mode non-aggregate fields are only allowed inside an aggregate functions or the non-aggregate fields are part of the GROUP BY clause. In the query for the failing assert the non-aggregate field was inside a WINDOW function and the window function was treated as an aggregate function and so no error was thrown. The fix would be to make sure to mark that a non-aggregate field is used inside a window function and not an aggregate function and throw an error then.
Diffstat (limited to 'sql')
-rw-r--r--sql/item_sum.cc4
-rw-r--r--sql/item_windowfunc.cc6
-rw-r--r--sql/sql_yacc.yy3
3 files changed, 9 insertions, 4 deletions
diff --git a/sql/item_sum.cc b/sql/item_sum.cc
index e50822e71f2..9f68a89a7c8 100644
--- a/sql/item_sum.cc
+++ b/sql/item_sum.cc
@@ -84,7 +84,9 @@ bool Item_sum::init_sum_func_check(THD *thd)
/* Set a reference to the nesting set function if there is any */
in_sum_func= thd->lex->in_sum_func;
/* Save a pointer to object to be used in items for nested set functions */
- thd->lex->in_sum_func= this;
+ if (!window_func_sum_expr_flag)
+ thd->lex->in_sum_func= this;
+
nest_level= thd->lex->current_select->nest_level;
ref_by= 0;
aggr_level= -1;
diff --git a/sql/item_windowfunc.cc b/sql/item_windowfunc.cc
index bb4a8a9f3af..1c97c4cb6d8 100644
--- a/sql/item_windowfunc.cc
+++ b/sql/item_windowfunc.cc
@@ -93,6 +93,12 @@ Item_window_func::fix_fields(THD *thd, Item **ref)
my_error(ER_NO_ORDER_LIST_IN_WINDOW_SPEC, MYF(0), window_func()->func_name());
return true;
}
+
+ /*
+ Mark that Item_sum is used as a window function
+ */
+ window_func()->mark_as_window_func_sum_expr();
+
/*
TODO: why the last parameter is 'ref' in this call? What if window_func
decides to substitute itself for something else and does *ref=.... ?
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy
index 386c86cb3e2..ddff82ea4ba 100644
--- a/sql/sql_yacc.yy
+++ b/sql/sql_yacc.yy
@@ -10497,9 +10497,6 @@ window_func:
simple_window_func
|
sum_expr
- {
- ((Item_sum *) $1)->mark_as_window_func_sum_expr();
- }
;
simple_window_func: