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

wrong result (extra rows) on the query with UNION and brackets

Details

    • Bug
    • Status: Closed (View Workflow)
    • Major
    • Resolution: Fixed
    • 10.4(EOL)
    • 10.4.0
    • Parser
    • None

    Description

      MariaDB [test]> (select 1) union (select 1) union (select 1);
      +---+
      | 1 |
      +---+
      | 1 |
      +---+
      1 row in set (0.000 sec)
       
      MariaDB [test]> ((select 1) union (select 1) union (select 1));
      +---+
      | 1 |
      +---+
      | 1 |
      | 1 |
      +---+
      2 rows in set (0.000 sec)
      
      

      Attachments

        Issue Links

          Activity

            alice Alice Sherepa added a comment -

             10.4 9183f66f056e27490
            MariaDB [test]> CREATE OR REPLACE FUNCTION func() RETURNS int RETURN   ( (SELECT 1 a) UNION (SELECT 2)  limit 1 );
            ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UNION (SELECT 2)  limit 1 )' at line 1
            MariaDB [test]> (SELECT 1 a) UNION (SELECT 2)  limit 1;
            +---+
            | a |
            +---+
            | 1 |
            +---+
            1 row in set (0.001 sec)
             
            MariaDB [test]> ((SELECT 1 a) UNION (SELECT 2)  limit 1);
            +---+
            | a |
            +---+
            | 1 |
            | 2 |
            +---+
            2 rows in set (0.001 sec)
             
            MariaDB [test]> ((SELECT 1 a) UNION (SELECT 2)  limit 1) limit 1;
            +---+
            | a |
            +---+
            | 1 |
            +---+
            1 row in set (0.002 sec)
             
            MariaDB [test]> CREATE OR REPLACE FUNCTION func() RETURNS int RETURN   (( (SELECT 1 a) UNION (SELECT 2)  limit 1 )limit 1);
            ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UNION (SELECT 2)  limit 1 )limit 1)' at line 1
            

            alice Alice Sherepa added a comment - 10.4 9183f66f056e27490 MariaDB [test]> CREATE OR REPLACE FUNCTION func() RETURNS int RETURN ( (SELECT 1 a) UNION (SELECT 2) limit 1 ); ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UNION (SELECT 2) limit 1 )' at line 1 MariaDB [test]> (SELECT 1 a) UNION (SELECT 2) limit 1; +---+ | a | +---+ | 1 | +---+ 1 row in set (0.001 sec)   MariaDB [test]> ((SELECT 1 a) UNION (SELECT 2) limit 1); +---+ | a | +---+ | 1 | | 2 | +---+ 2 rows in set (0.001 sec)   MariaDB [test]> ((SELECT 1 a) UNION (SELECT 2) limit 1) limit 1; +---+ | a | +---+ | 1 | +---+ 1 row in set (0.002 sec)   MariaDB [test]> CREATE OR REPLACE FUNCTION func() RETURNS int RETURN (( (SELECT 1 a) UNION (SELECT 2) limit 1 )limit 1); ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'UNION (SELECT 2) limit 1 )limit 1)' at line 1

            The following is also wrong:

            MariaDB [test]> (select 1 union select 1 union select 1);      
            +---+
            | 1 |
            +---+
            | 1 |
            | 1 |
            +---+
            MariaDB [test]> explain extended (select 1 union select 1 union select 1);
            +------+--------------+--------------+------+---------------+------+---------+------+------+----------+----------------+
            | id   | select_type  | table        | type | possible_keys | key  | key_len | ref  | rows | filtered | Extra          |
            +------+--------------+--------------+------+---------------+------+---------+------+------+----------+----------------+
            |    1 | PRIMARY      | NULL         | NULL | NULL          | NULL | NULL    | NULL | NULL |     NULL | No tables used |
            |    2 | UNION        | NULL         | NULL | NULL          | NULL | NULL    | NULL | NULL |     NULL | No tables used |
            |    3 | UNION        | NULL         | NULL | NULL          | NULL | NULL    | NULL | NULL |     NULL | No tables used |
            | NULL | UNION RESULT | <union1,2,3> | ALL  | NULL          | NULL | NULL    | NULL | NULL |     NULL |                |
            +------+--------------+--------------+------+---------------+------+---------+------+------+----------+----------------+
             
            MariaDB [test]> show warnings;
            +-------+------+--------------------------------------------------------------------------------------------------------------+
            | Level | Code | Message                                                                                                      |
            +-------+------+--------------------------------------------------------------------------------------------------------------+
            | Note  | 1003 | /* select#1 */ select 1 AS `1` union /* select#2 */ select 1 AS `1` union all /* select#3 */ select 1 AS `1` |
            +-------+------+--------------------------------------------------------------------------------------------------------------+
            

            igor Igor Babaev (Inactive) added a comment - The following is also wrong: MariaDB [test]> (select 1 union select 1 union select 1); +---+ | 1 | +---+ | 1 | | 1 | +---+ MariaDB [test]> explain extended (select 1 union select 1 union select 1); +------+--------------+--------------+------+---------------+------+---------+------+------+----------+----------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | filtered | Extra | +------+--------------+--------------+------+---------------+------+---------+------+------+----------+----------------+ | 1 | PRIMARY | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | No tables used | | 2 | UNION | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | No tables used | | 3 | UNION | NULL | NULL | NULL | NULL | NULL | NULL | NULL | NULL | No tables used | | NULL | UNION RESULT | <union1,2,3> | ALL | NULL | NULL | NULL | NULL | NULL | NULL | | +------+--------------+--------------+------+---------------+------+---------+------+------+----------+----------------+   MariaDB [test]> show warnings; +-------+------+--------------------------------------------------------------------------------------------------------------+ | Level | Code | Message | +-------+------+--------------------------------------------------------------------------------------------------------------+ | Note | 1003 | /* select#1 */ select 1 AS `1` union /* select#2 */ select 1 AS `1` union all /* select#3 */ select 1 AS `1` | +-------+------+--------------------------------------------------------------------------------------------------------------+

            A fix for this bug was pushed into 10.4

            igor Igor Babaev (Inactive) added a comment - A fix for this bug was pushed into 10.4

            People

              igor Igor Babaev (Inactive)
              alice Alice Sherepa
              Votes:
              0 Vote for this issue
              Watchers:
              2 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.