Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.4(EOL)
-
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
- relates to
-
MDEV-16317 Testing for brackets (parentheses) in UNION/EXCEPT/INTERSECT operations
-
- Closed
-
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