Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Not a Bug
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Environment:Red Hat Enterprise Linux Server release 6.5 (Santiago)
Description
Hi,
I join show table status ans show create table.
The query :
select a13.id_vehicule id_vehicule, a12.id_energie id_energie, sum(a11.num_jo_dans_mois) WJXBFS1, sum(a11.num_jo_dans_annee) WJXBFS2 from `T_CALENDRIER` a11 cross join `T_ENERGIE` a12 cross join `T_VEHICULE` a13 where (a11.Id_Calendrier in (20131231) and a13.id_genre in (45)) group by a13.id_vehicule, a12.id_energie;
This query is fast in mysql 5.1, but slow in mariadb.
Thanx for your help.
Sebastien
Gliffy Diagrams
Attachments
Activity
- All
- Comments
- Work Log
- History
- Activity
- Transitions
Compare to mysql 5.1 this query lost 42s for about 300s execution time . Removing the GROUP BY, Sebastien found that the regression can not be reproduce.