Details
-
Task
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
None
-
None
Description
Since version 5.7.5 Mysql has the "ONLY_FULL_GROUP_BY" flag by default enabled and I am trying to make some software that I maintain to be compatible with that.
The most clean way to achieve that is with the ANY_VALUE() function. If you give a query like
SELECT ANY_VALUE(var1), ANY_VALUE(var2), color FROM mybase GROUP BY color
Mysql will not complain that var1 and var2 are not determined.
Unfortunately when I use this under MariaDb I get the following error:
MySQL error 1728: Cannot load from mysql.proc. The table is probably corrupted
As soon as you remove the ANY_VALUE the error disappears - so it must be related to this function.
See also MDEV-30766 where this function is needed for the query to return correct results
Attachments
Issue Links
- duplicates
-
MDEV-12481 The ANY_VALUE() function is not yet included in MariaDB 10.2.5 (RC)
-
- Closed
-
- is part of
-
MDEV-28906 MySQL 8.0 desired compatibility
-
- Open
-
- relates to
-
MDEV-30766 Issue with NOT IN (subquery that violates "FULL GROUP BY")
-
- Closed
-
- links to
MariaDB does not have ANY_VALUE() function.
For the error, please run CHECK TABLE mysql.proc, most likely it is actually corrupted. Since MariaDB does not have the internal function, it attempts to read mysql.proc to see if there is one in there, and hits the error. When you remove ANY_VALUE, the query does not make server read from mysql.proc, hence no error.