View Issue Details

IDProjectCategoryView StatusLast Update
0005457mantisbtinstallationpublic2005-04-25 07:48
Reporterlieckens Assigned Tothraxisp  
PrioritynormalSeveritymajorReproducibilityalways
Status closedResolutionfixed 
Product Version1.0.0a1 
Fixed in Version1.0.0a2 
Summary0005457: At least MySQL 4.1.x for this version
Description

Release 1.0.0 requires MySQL 4.1.x or higher.
Why?
Lower MySQL versions don't support nested queries used in the new Mantis release.

Additional Information

Example query:

SELECT DISTINCT u.id, u.username, u.realname, u.access_level as access_level, l.access_level as override
FROM mantis_user_table u
LEFT JOIN ( mantis_project_table p LEFT JOIN mantis_project_user_list_table l ON p.id=l.project_id AND p.id = 1 ) ON l.user_id=u.id
WHERE ( ( u.access_level >= 55 ) OR ( l.access_level >= 55 AND l.user_id=u.id ) OR u.access_level>=90 ) AND u.enabled = 1 AND p.id = 1

TagsNo tags attached.

Relationships

has duplicate 0005462 closedthraxisp SQL error when displaying a project 
has duplicate 0005489 closedthraxisp Bugs are not displayed after click 
has duplicate 0005495 closedgrangeway 1.0.0a1 also requires MySQL 4.0.18 at a minimum 

Activities

thraxisp

thraxisp

2005-04-19 10:20

reporter   ~0009841

Fixed in CVS

reverted to older slower query in
core/project_api.php -> 1.71