Re: [Maria-developers] [Commits] c776cad5f8e: MDEV-22702: Assertion `!field->is_null()' failed in my_decimal::my_decimal

Hi Varun, First: I can still get the assertion failure if I run this: set @@sql_mode='only_full_group_by'; select min(1 mod a1), bit_or(a2) over () from t1; As far as I understand, the query is not valid for only_full_group_by mode. (Window functions as such are ok, but here window function is using a2, which cannot be accessed in the post-grouping context). More input below. On Wed, Jul 08, 2020 at 02:58:31PM +0530, Varun wrote:
...
Why use uint32 when n_sum_items is uint, and elements is also uint? I suggest just keep using uint.
Wording could be better. I don't understand what did you mean to say about ORDER BY. can you elaborate?
what's "explicit aggregate" ? A regular aggregate function (i.e. not a window function)?
BR Sergei -- Sergei Petrunia, Software Developer MariaDB Corporation | Skype: sergefp | Blog: http://s.petrunia.net/blog

Hi Sergey, On Thu, Aug 6, 2020 at 4:31 PM Sergey Petrunia <sergey@mariadb.com> wrote: then the query is not valid in ONLY_FULL_GROUP_BY mode. I investigated that the argument to the window function (here column a2 was not marked as a non-aggregated field). I have fixed this and the query gets rejected in ONLY_FULL_GROUP_BY mode.
Changed.
What i meant here was that window functions can be present both in the SELECT LIST and ORDER BY clause, so a separate check is made here. Just above this we iterate over the SELECT LIST for non-aggregate fields and aggregate functions. If the window function is present in the ORDER BY clause iterating over the SELECT LIST would not have helped that is the check is done separately. But looks like we don't do this check for aggregate functions in the ORDER BY clause. Example: SELECT a FROM t1 ORDER BY sum(a) this does not set mixed_implicit_grouping to true. But looks like it is ok if it is not set. We are just going to send a row with all NULL values to the client. With window functions this is an issue because we need to execute the window function for the one row in the output with implicit grouping
Yes explicit aggregate means aggregate function here.
participants (2)
-
Sergey Petrunia
-
varun gupta