Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Not a Bug
-
5.5, 10.0, 10.1, 10.2
-
None
Description
This query works fine and returns 1:
SELECT (1,1)=(SELECT 1,1);
|
This query returns an error:
SELECT (1,1)=(1,SELECT 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 'SELECT 1)' at line 1
|