Details

    • Bug
    • Status: Closed (View Workflow)
    • Critical
    • Resolution: Fixed
    • 5.5.51, 10.1.16, 10.1.17, 10.0.27, 5.5(EOL), 10.0(EOL), 10.1(EOL)
    • 5.5.54, 10.0.29, 10.1.20, 10.2.3
    • Views
    • None
    • We reproduce crash on multiple server/configs with:
       10.0.27 on debian wheezy, debian jessie
       10.1.16, 10.1.17 on debian jessie
      Query work fine on 10.0.26
    • 10.1.18

    Description

      You can use this query to reproduce crash:

      drop table if exists dummy;
       
      create table dummy (
         field1 int
       ) engine=innodb default charset=utf8;
       
      insert into dummy values (1);
       
      select round((select 1 from dummy limit 1))
      from dummy
      group by round((select 1 from dummy limit 1));
      

      Regards,
      Vincent

      Attachments

        Activity

          Ok to push. Sorry for the delay.

          psergei Sergei Petrunia added a comment - Ok to push. Sorry for the delay.

          Note: the above example from gschulman actually doesn't parse due to the way how FROM dual is handled in MySQL. If one replaces dual with some other table, it works.

          psergei Sergei Petrunia added a comment - Note: the above example from gschulman actually doesn't parse due to the way how FROM dual is handled in MySQL. If one replaces dual with some other table, it works.

          Thanks psergey for working on this.
          Not sure if I understand your comment about my example, but I can reproduce the bug both ways, using dual or using a table. Let me share it from my console:

          Welcome to the MariaDB monitor.  Commands end with ; or \g.
          Your MariaDB connection id is 39
          Server version: 10.1.17-MariaDB-1~precise mariadb.org binary distribution
           
          Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.
           
          Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
           
          MariaDB [(none)]> use test
          Reading table information for completion of table and column names
          You can turn off this feature to get a quicker startup with -A
           
          Database changed
          MariaDB [test]> SELECT concat((SELECT "a" from d),"b")
              -> FROM dual 
              -> GROUP BY concat((SELECT "a" from d),"b");
          ERROR 2013 (HY000): Lost connection to MySQL server during query
          MariaDB [test]> 
          

          Here the server crashed and restarted.

          MariaDB [test]> create table a (i integer);
          Query OK, 0 rows affected (0.01 sec)
          MariaDB [test]> 
          MariaDB [test]> SELECT concat((SELECT "a" from d),"b")
              -> FROM a
              -> GROUP BY concat((SELECT "a" from d),"b");
          ERROR 2006 (HY000): MySQL server has gone away
          No connection. Trying to reconnect...
          Connection id:    2
          Current database: test
           
          ERROR 2013 (HY000): Lost connection to MySQL server during query
          MariaDB [test]> 
          

          gschulman Guillermo Schulman added a comment - Thanks psergey for working on this. Not sure if I understand your comment about my example, but I can reproduce the bug both ways, using dual or using a table. Let me share it from my console: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 39 Server version: 10.1.17-MariaDB-1~precise mariadb.org binary distribution   Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.   Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.   MariaDB [(none)]> use test Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A   Database changed MariaDB [test]> SELECT concat((SELECT "a" from d),"b") -> FROM dual -> GROUP BY concat((SELECT "a" from d),"b"); ERROR 2013 (HY000): Lost connection to MySQL server during query MariaDB [test]> Here the server crashed and restarted. MariaDB [test]> create table a (i integer); Query OK, 0 rows affected (0.01 sec) MariaDB [test]> MariaDB [test]> SELECT concat((SELECT "a" from d),"b") -> FROM a -> GROUP BY concat((SELECT "a" from d),"b"); ERROR 2006 (HY000): MySQL server has gone away No connection. Trying to reconnect... Connection id: 2 Current database: test   ERROR 2013 (HY000): Lost connection to MySQL server during query MariaDB [test]>

          gschulman, thanks for the note.
          The patch was made against MariaDB-10.0. I can confirm that our example with FROM a works on the patched 10.0.

          However, 10.0 gives a parse error for the FROM dual variant. The patch for this issue hasn't been merged into MariaDB-10.1 yet, but I think we have all reasons to believe that the FROM dual variant will work too when the patch is merged into 10.1.

          psergei Sergei Petrunia added a comment - gschulman , thanks for the note. The patch was made against MariaDB-10.0. I can confirm that our example with FROM a works on the patched 10.0. However, 10.0 gives a parse error for the FROM dual variant. The patch for this issue hasn't been merged into MariaDB-10.1 yet, but I think we have all reasons to believe that the FROM dual variant will work too when the patch is merged into 10.1.

          Oh, ok, now it's clear what you meant, psergey.
          BTW, even if the fix seems to be already pushed, let me add:
          1 - it can be reproduced by just running the EXPLAIN for those queries, clearly meaning that the problem was in the planner.
          2 - replacing GROUP BY by ORDER BY in those queries also triggers the problem.
          Thanks again.

          gschulman Guillermo Schulman added a comment - Oh, ok, now it's clear what you meant, psergey . BTW, even if the fix seems to be already pushed, let me add: 1 - it can be reproduced by just running the EXPLAIN for those queries, clearly meaning that the problem was in the planner. 2 - replacing GROUP BY by ORDER BY in those queries also triggers the problem. Thanks again.

          People

            sanja Oleksandr Byelkin
            donzat_vwt Vincent Wallet
            Votes:
            2 Vote for this issue
            Watchers:
            7 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Git Integration

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