Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-11588

Support for ONLY_FULL_GROUP_BY functional dependency

Details

    Description

      When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any SELECT queries with (non-aggregated) columns not also listed in the GROUP BY statement with error 1055: "'db.table.column_name' isn't in GROUP_BY".

      However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

      "17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is functionally dependent on G or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."

      Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies in GROUP BY statements. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and presumable performance hit when dependent columns are needlessly iterated for grouping), where functional dependency could be detected. For some useful background, see this entry at the MySQLServerTeam blog, along with Roland Bouman's related write-up .

      Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL to Maria more involved, forcing either SQL mode or code changes where affected queries are used. (There's a related older ticket mentioning the ANY_VALUE() function to deal with the over-strict mode, however that alone makes for a clunky work-around to over-strict grouping.)

      Attachments

        Issue Links

          Activity

            CodeSatori Markus A.O. Loponen created issue -
            CodeSatori Markus A.O. Loponen made changes -
            Field Original Value New Value
            Description When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any queries with SELECT columns not also listed in the GROUP BY statement with error 1055: "_'db.table.column_name' isn't in GROUP_BY_".

            However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

            _"17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is *functionally dependent on G* or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."_

            Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and performance hit when dependent columns are also iterated for grouping), when functional dependency could be detected. For some useful background, see [this entry|http://mysqlserverteam.com/mysql-5-7-only_full_group_by-improved-recognizing-functional-dependencies-enabled-by-default/] at the MySQLServerTeam blog, along with Roland Bouman's [related write-up |http://rpbouman.blogspot.co.id/2014/09/mysql-575-group-by-respects-functional.html].

            There's a related [older ticket|https://jira.mariadb.org/browse/MDEV-10426] mentioning the ANY_VALUE() function to work around the over-strict mode, however that alone makes for a clunky fix to the over-strict grouping mode. Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL more involved, forcing either SQL mode or code changes where affected queries are used.
            When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any queries with SELECT columns not also listed in the GROUP BY statement with error 1055: "_'db.table.column_name' isn't in GROUP_BY_".

            However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

            _"17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is *functionally dependent on G* or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."_

            Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and performance hit when dependent columns are also iterated for grouping), when functional dependency could be detected. For some useful background, see [this entry|http://mysqlserverteam.com/mysql-5-7-only_full_group_by-improved-recognizing-functional-dependencies-enabled-by-default/] at the MySQLServerTeam blog, along with Roland Bouman's [related write-up |http://rpbouman.blogspot.co.id/2014/09/mysql-575-group-by-respects-functional.html].

            There's a related [older ticket|https://jira.mariadb.org/browse/MDEV-10426] mentioning the ANY_VALUE() function to work around the over-strict mode, however that alone makes for a clunky fix to the over-strict grouping mode.

            Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL to Maria more involved, forcing either SQL mode or code changes where affected queries are used.
            CodeSatori Markus A.O. Loponen made changes -
            Description When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any queries with SELECT columns not also listed in the GROUP BY statement with error 1055: "_'db.table.column_name' isn't in GROUP_BY_".

            However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

            _"17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is *functionally dependent on G* or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."_

            Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and performance hit when dependent columns are also iterated for grouping), when functional dependency could be detected. For some useful background, see [this entry|http://mysqlserverteam.com/mysql-5-7-only_full_group_by-improved-recognizing-functional-dependencies-enabled-by-default/] at the MySQLServerTeam blog, along with Roland Bouman's [related write-up |http://rpbouman.blogspot.co.id/2014/09/mysql-575-group-by-respects-functional.html].

            There's a related [older ticket|https://jira.mariadb.org/browse/MDEV-10426] mentioning the ANY_VALUE() function to work around the over-strict mode, however that alone makes for a clunky fix to the over-strict grouping mode.

            Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL to Maria more involved, forcing either SQL mode or code changes where affected queries are used.
            When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any queries with SELECT columns not also listed in the GROUP BY statement with error 1055: "_'db.table.column_name' isn't in GROUP_BY_".

            However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

            _"17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is *functionally dependent on G* or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."_

            Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and performance hit when dependent columns are also iterated for grouping), when functional dependency could be detected. For some useful background, see [this entry|http://mysqlserverteam.com/mysql-5-7-only_full_group_by-improved-recognizing-functional-dependencies-enabled-by-default/] at the MySQLServerTeam blog, along with Roland Bouman's [related write-up |http://rpbouman.blogspot.co.id/2014/09/mysql-575-group-by-respects-functional.html].

            Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL to Maria more involved, forcing either SQL mode or code changes where affected queries are used. (There's a related [older ticket|https://jira.mariadb.org/browse/MDEV-10426] mentioning the ANY_VALUE() function to deal with the over-strict mode, however that alone makes for a clunky work-around to the over-strict grouping mode.)
            CodeSatori Markus A.O. Loponen made changes -
            Description When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any queries with SELECT columns not also listed in the GROUP BY statement with error 1055: "_'db.table.column_name' isn't in GROUP_BY_".

            However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

            _"17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is *functionally dependent on G* or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."_

            Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and performance hit when dependent columns are also iterated for grouping), when functional dependency could be detected. For some useful background, see [this entry|http://mysqlserverteam.com/mysql-5-7-only_full_group_by-improved-recognizing-functional-dependencies-enabled-by-default/] at the MySQLServerTeam blog, along with Roland Bouman's [related write-up |http://rpbouman.blogspot.co.id/2014/09/mysql-575-group-by-respects-functional.html].

            Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL to Maria more involved, forcing either SQL mode or code changes where affected queries are used. (There's a related [older ticket|https://jira.mariadb.org/browse/MDEV-10426] mentioning the ANY_VALUE() function to deal with the over-strict mode, however that alone makes for a clunky work-around to the over-strict grouping mode.)
            When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any queries with SELECT columns not also listed in the GROUP BY statement with error 1055: "_'db.table.column_name' isn't in GROUP_BY_".

            However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

            _"17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is *functionally dependent on G* or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."_

            Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and performance hit when dependent columns are also iterated for grouping), when functional dependency could be detected. For some useful background, see [this entry|http://mysqlserverteam.com/mysql-5-7-only_full_group_by-improved-recognizing-functional-dependencies-enabled-by-default/] at the MySQLServerTeam blog, along with Roland Bouman's [related write-up |http://rpbouman.blogspot.co.id/2014/09/mysql-575-group-by-respects-functional.html].

            Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL to Maria more involved, forcing either SQL mode or code changes where affected queries are used. (There's a related [older ticket|https://jira.mariadb.org/browse/MDEV-10426] mentioning the ANY_VALUE() function to deal with the over-strict mode, however that alone makes for a clunky work-around to over-strict grouping.)
            CodeSatori Markus A.O. Loponen made changes -
            Description When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any queries with SELECT columns not also listed in the GROUP BY statement with error 1055: "_'db.table.column_name' isn't in GROUP_BY_".

            However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

            _"17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is *functionally dependent on G* or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."_

            Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and performance hit when dependent columns are also iterated for grouping), when functional dependency could be detected. For some useful background, see [this entry|http://mysqlserverteam.com/mysql-5-7-only_full_group_by-improved-recognizing-functional-dependencies-enabled-by-default/] at the MySQLServerTeam blog, along with Roland Bouman's [related write-up |http://rpbouman.blogspot.co.id/2014/09/mysql-575-group-by-respects-functional.html].

            Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL to Maria more involved, forcing either SQL mode or code changes where affected queries are used. (There's a related [older ticket|https://jira.mariadb.org/browse/MDEV-10426] mentioning the ANY_VALUE() function to deal with the over-strict mode, however that alone makes for a clunky work-around to over-strict grouping.)
            When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any queries with SELECT columns not also listed in the GROUP BY statement with error 1055: "_'db.table.column_name' isn't in GROUP_BY_".

            However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

            _"17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is *functionally dependent on G* or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."_

            Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies in GROUP BY statements. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and presumable performance hit when dependent columns are needlessly iterated for grouping), when functional dependency could be detected. For some useful background, see [this entry|http://mysqlserverteam.com/mysql-5-7-only_full_group_by-improved-recognizing-functional-dependencies-enabled-by-default/] at the MySQLServerTeam blog, along with Roland Bouman's [related write-up |http://rpbouman.blogspot.co.id/2014/09/mysql-575-group-by-respects-functional.html].

            Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL to Maria more involved, forcing either SQL mode or code changes where affected queries are used. (There's a related [older ticket|https://jira.mariadb.org/browse/MDEV-10426] mentioning the ANY_VALUE() function to deal with the over-strict mode, however that alone makes for a clunky work-around to over-strict grouping.)
            CodeSatori Markus A.O. Loponen made changes -
            Description When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any queries with SELECT columns not also listed in the GROUP BY statement with error 1055: "_'db.table.column_name' isn't in GROUP_BY_".

            However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

            _"17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is *functionally dependent on G* or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."_

            Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies in GROUP BY statements. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and presumable performance hit when dependent columns are needlessly iterated for grouping), when functional dependency could be detected. For some useful background, see [this entry|http://mysqlserverteam.com/mysql-5-7-only_full_group_by-improved-recognizing-functional-dependencies-enabled-by-default/] at the MySQLServerTeam blog, along with Roland Bouman's [related write-up |http://rpbouman.blogspot.co.id/2014/09/mysql-575-group-by-respects-functional.html].

            Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL to Maria more involved, forcing either SQL mode or code changes where affected queries are used. (There's a related [older ticket|https://jira.mariadb.org/browse/MDEV-10426] mentioning the ANY_VALUE() function to deal with the over-strict mode, however that alone makes for a clunky work-around to over-strict grouping.)
            When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any queries with SELECT columns not also listed in the GROUP BY statement with error 1055: "_'db.table.column_name' isn't in GROUP_BY_".

            However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

            _"17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is *functionally dependent on G* or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."_

            Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies in GROUP BY statements. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and presumable performance hit when dependent columns are needlessly iterated for grouping), where functional dependency could be detected. For some useful background, see [this entry|http://mysqlserverteam.com/mysql-5-7-only_full_group_by-improved-recognizing-functional-dependencies-enabled-by-default/] at the MySQLServerTeam blog, along with Roland Bouman's [related write-up |http://rpbouman.blogspot.co.id/2014/09/mysql-575-group-by-respects-functional.html].

            Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL to Maria more involved, forcing either SQL mode or code changes where affected queries are used. (There's a related [older ticket|https://jira.mariadb.org/browse/MDEV-10426] mentioning the ANY_VALUE() function to deal with the over-strict mode, however that alone makes for a clunky work-around to over-strict grouping.)
            CodeSatori Markus A.O. Loponen made changes -
            Description When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any queries with SELECT columns not also listed in the GROUP BY statement with error 1055: "_'db.table.column_name' isn't in GROUP_BY_".

            However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

            _"17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is *functionally dependent on G* or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."_

            Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies in GROUP BY statements. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and presumable performance hit when dependent columns are needlessly iterated for grouping), where functional dependency could be detected. For some useful background, see [this entry|http://mysqlserverteam.com/mysql-5-7-only_full_group_by-improved-recognizing-functional-dependencies-enabled-by-default/] at the MySQLServerTeam blog, along with Roland Bouman's [related write-up |http://rpbouman.blogspot.co.id/2014/09/mysql-575-group-by-respects-functional.html].

            Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL to Maria more involved, forcing either SQL mode or code changes where affected queries are used. (There's a related [older ticket|https://jira.mariadb.org/browse/MDEV-10426] mentioning the ANY_VALUE() function to deal with the over-strict mode, however that alone makes for a clunky work-around to over-strict grouping.)
            When SQL mode ONLY_FULL_GROUP_BY is enabled (as is default), MariaDB rejects, per the '92 SQL standard, any SELECT queries with (non-aggregated) columns not also listed in the GROUP BY statement with error 1055: "_'db.table.column_name' isn't in GROUP_BY_".

            However, the 2003 spec loosens this restriction with a requirement that the columns need only be functionally dependent:

            _"17) If T is a grouped table, then let G be the set of grouping columns of T. In each ((value expression)) contained in ((select list)) , each column reference that references a column of T shall reference some column C that is *functionally dependent on G* or shall be contained in an aggregated argument of a ((set function specification)) whose aggregation query is QS."_

            Since version 5.7.5, available since late 2014, MySQL supports the detection of functional dependencies in GROUP BY statements. It would be good to see this ported over to MariaDB as well to eliminate the need for redundant double column listing (and presumable performance hit when dependent columns are needlessly iterated for grouping), where functional dependency could be detected. For some useful background, see [this entry|http://mysqlserverteam.com/mysql-5-7-only_full_group_by-improved-recognizing-functional-dependencies-enabled-by-default/] at the MySQLServerTeam blog, along with Roland Bouman's [related write-up |http://rpbouman.blogspot.co.id/2014/09/mysql-575-group-by-respects-functional.html].

            Since ONLY_FULL_GROUP_BY is now a default both in Maria and MySQL, not porting this to Maria would make migration from MySQL to Maria more involved, forcing either SQL mode or code changes where affected queries are used. (There's a related [older ticket|https://jira.mariadb.org/browse/MDEV-10426] mentioning the ANY_VALUE() function to deal with the over-strict mode, however that alone makes for a clunky work-around to over-strict grouping.)
            serg Sergei Golubchik made changes -
            Component/s Parser [ 10201 ]
            Component/s Syntax [ 13909 ]
            igor Igor Babaev (Inactive) made changes -
            Priority Minor [ 4 ] Major [ 3 ]
            igor Igor Babaev (Inactive) made changes -
            Assignee Igor Babaev [ igor ]
            igor Igor Babaev (Inactive) made changes -
            Labels Compatibility MySQL_575 only_full_group_by sql_mode Compatibility MySQL_575 gsoc17 only_full_group_by sql_mode
            varun Varun Gupta (Inactive) made changes -
            Fix Version/s 10.4 [ 22408 ]
            varun Varun Gupta (Inactive) made changes -
            Assignee Igor Babaev [ igor ] Varun Gupta [ varun ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 10.4 [ 22408 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            NRE Projects RM_105_CANDIDATE
            shagalla Galina Shalygina (Inactive) made changes -
            Assignee Varun Gupta [ varun ] Galina Shalygina [ shagalla ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 10.5 [ 23123 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            NRE Projects RM_105_CANDIDATE RM_105_CANDIDATE RM_105_OPTIMIZER
            shagalla Galina Shalygina (Inactive) made changes -
            Status Open [ 1 ] In Progress [ 3 ]
            julien.fritsch Julien Fritsch made changes -
            Due Date 2019-09-16
            alice Alice Sherepa made changes -
            alice Alice Sherepa made changes -
            alice Alice Sherepa made changes -
            ralf.gebhardt Ralf Gebhardt made changes -
            Priority Major [ 3 ] Critical [ 2 ]
            shagalla Galina Shalygina (Inactive) made changes -
            igor Igor Babaev (Inactive) made changes -
            Assignee Galina Shalygina [ shagalla ] Igor Babaev [ igor ]
            julien.fritsch Julien Fritsch made changes -
            Due Date 2019-09-16
            serg Sergei Golubchik made changes -
            Fix Version/s 10.6 [ 24028 ]
            Fix Version/s 10.5 [ 23123 ]
            varun Varun Gupta (Inactive) made changes -
            serg Sergei Golubchik made changes -
            Assignee Igor Babaev [ igor ] Sergei Golubchik [ serg ]
            serg Sergei Golubchik made changes -
            Status In Progress [ 3 ] Stalled [ 10000 ]
            serg Sergei Golubchik made changes -
            Assignee Sergei Golubchik [ serg ] Igor Babaev [ igor ]
            serg Sergei Golubchik made changes -
            serg Sergei Golubchik made changes -
            Rank Ranked lower
            serg Sergei Golubchik made changes -
            Rank Ranked lower
            serg Sergei Golubchik made changes -
            Priority Critical [ 2 ] Major [ 3 ]
            alice Alice Sherepa made changes -
            alice Alice Sherepa made changes -
            psergei Sergei Petrunia made changes -
            Fix Version/s 10.7 [ 24805 ]
            Fix Version/s 10.6 [ 24028 ]
            psergei Sergei Petrunia made changes -
            Labels Compatibility MySQL_575 gsoc17 only_full_group_by sql_mode Compatibility MySQL_575 gsoc17 maybe-10. only_full_group_by sql_mode
            psergei Sergei Petrunia made changes -
            Labels Compatibility MySQL_575 gsoc17 maybe-10. only_full_group_by sql_mode Compatibility MySQL_575 gsoc17 maybe-10. maybe-10.7 only_full_group_by sql_mode
            psergei Sergei Petrunia made changes -
            Labels Compatibility MySQL_575 gsoc17 maybe-10. maybe-10.7 only_full_group_by sql_mode Compatibility MySQL_575 gsoc17 maybe-10.7 only_full_group_by sql_mode
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 10.7 [ 24805 ]
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 78801 ] MariaDB v4 [ 131667 ]
            serg Sergei Golubchik made changes -
            julien.fritsch Julien Fritsch made changes -
            Issue Type Task [ 3 ] New Feature [ 2 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Labels Compatibility MySQL_575 gsoc17 maybe-10.7 only_full_group_by sql_mode Compatibility MySQL_575 gsoc17 only_full_group_by sql_mode
            shagalla Galina Shalygina (Inactive) made changes -
            Assignee Igor Babaev [ igor ] Galina Shalygina [ shagalla ]
            psergei Sergei Petrunia made changes -
            Fix Version/s 11.6 [ 29515 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 11.7 [ 29815 ]
            Fix Version/s 11.6 [ 29515 ]
            shagalla Galina Shalygina (Inactive) made changes -
            Assignee Galina Shalygina [ shagalla ]
            serg Sergei Golubchik made changes -
            Fix Version/s 11.8 [ 29921 ]
            Fix Version/s 11.7 [ 29815 ]
            julien.fritsch Julien Fritsch made changes -
            Assignee Sergei Petrunia [ psergey ]
            serg Sergei Golubchik made changes -
            Fix Version/s 11.9 [ 29945 ]
            Fix Version/s 11.8 [ 29921 ]
            julien.fritsch Julien Fritsch made changes -
            Priority Major [ 3 ] Critical [ 2 ]
            psergei Sergei Petrunia made changes -
            Fix Version/s 12.1 [ 29992 ]
            Fix Version/s 12.0 [ 29945 ]
            ralf.gebhardt Ralf Gebhardt made changes -
            Fix Version/s 12.1 [ 29992 ]

            People

              psergei Sergei Petrunia
              CodeSatori Markus A.O. Loponen
              Votes:
              17 Vote for this issue
              Watchers:
              25 Start watching this issue

              Dates

                Created:
                Updated:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.