Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.1.3
-
centos 6
-
10.1.6-1
Description
This test case is not working on MariaDB 10.1.3:
CREATE TABLE |
test ( id INT, type_id INT, PRIMARY KEY(id) ); |
|
INSERT INTO |
test ( id, type_id )
|
VALUES |
( 1, 1 ),
|
( 2, 1 ),
|
( 3, 2 ),
|
( 4, 5 );
|
|
SELECT
|
*
|
FROM
|
test T
|
JOIN ( |
(
|
SELECT 1 AS some_another_type_id |
)
|
UNION ALL |
(
|
SELECT 2 AS some_another_type_id |
)
|
ORDER BY |
some_another_type_id DESC |
) AAA
|
WHERE
|
T.type_id = 1;
|
Same query on clean Mysql 5.6 working with no problems.
Workaround: delete unneeded "order by".
Attachments
Issue Links
- links to