我使用mantisBT 1.2.19进行错误跟踪项目http://mantisbt.org/download.php。
此外,我使用插件gaugeSupport支持用户对错误排名的错误进行投票(https://github.com/EvilRenegade/Gauge-Support)
该插件不适合我的螳螂项目:
在插件文件issue_ranking.php中,有MySQL查询:
$dbquery = "SELECT
max(sd.bugid) as bugid,
count(sd.rating) as no_of_ratings,
sum(sd.rating) as sum_of_ratings,
avg(sd.rating) as avg_rating,
max(sd.rating) as highest_rating,
min(sd.rating) as lowest_rating,
IFNULL(bm2_count,0) AS bm2_count,
IFNULL(bm2_sum,0) AS bm2_sum,
IFNULL(bm1_count,0) AS bm1_count,
IFNULL(bm1_sum,0) AS bm1_sum,
IFNULL(b2_count,0) AS b2_count,
IFNULL(b2_sum,0) AS b2_sum,
IFNULL(b1_count,0) AS b1_count,
IFNULL(b1_sum,0) AS b1_sum
FROM {$plugin_table} sd
INNER JOIN {$bug_table} b ON sd.bugid = b.id
LEFT OUTER JOIN (SELECT bugid, count(rating) as bm2_count, sum(rating) as bm2_sum FROM {$plugin_table} GROUP BY bugid, rating HAVING rating = -2) bm2 ON sd.bugid = bm2.bugid
LEFT OUTER JOIN (SELECT bugid, count(rating) as bm1_count, sum(rating) as bm1_sum FROM {$plugin_table} GROUP BY bugid, rating HAVING rating = -1) bm1 ON sd.bugid = bm1.bugid
LEFT OUTER JOIN (SELECT bugid, count(rating) as b2_count, sum(rating) as b2_sum FROM {$plugin_table} GROUP BY bugid, rating HAVING rating = 2) b2 ON sd.bugid = b2.bugid
LEFT OUTER JOIN (SELECT bugid, count(rating) as b1_count, sum(rating) as b1_sum FROM {$plugin_table} GROUP BY bugid, rating HAVING rating = 1) b1 ON sd.bugid = b1.bugid
{$where_clause}
GROUP BY sd.bugid
ORDER BY sum(sd.rating) {$order}
LIMIT {$start}{$noOfBugs}";
导致错误:
Database query failed. Error received from database was #1054: Unknown column 'rating' in 'having clause' for the query: SELECT
max(sd.bugid) as bugid,
count(sd.rating) as no_of_ratings,
sum(sd.rating) as sum_of_ratings,
avg(sd.rating) as avg_rating,
max(sd.rating) as highest_rating,
min(sd.rating) as lowest_rating,
IFNULL(bm2_count,0) AS bm2_count,
IFNULL(bm2_sum,0) AS bm2_sum,
IFNULL(bm1_count,0) AS bm1_count,
IFNULL(bm1_sum,0) AS bm1_sum,
IFNULL(b2_count,0) AS b2_count,
IFNULL(b2_sum,0) AS b2_sum,
IFNULL(b1_count,0) AS b1_count,
IFNULL(b1_sum,0) AS b1_sum
FROM mantis_plugin_GaugeSupport_support_data_table sd
INNER JOIN mantis_bug_table b ON sd.bugid = b.id
LEFT OUTER JOIN (SELECT bugid, count(rating) as bm2_count, sum(rating) as bm2_sum FROM mantis_plugin_GaugeSupport_support_data_table GROUP BY bugid, rating HAVING rating = -2) bm2 ON sd.bugid = bm2.bugid
LEFT OUTER JOIN (SELECT bugid, count(rating) as bm1_count, sum(rating) as bm1_sum FROM mantis_plugin_GaugeSupport_support_data_table GROUP BY bugid, rating HAVING rating = -1) bm1 ON sd.bugid = bm1.bugid
LEFT OUTER JOIN (SELECT bugid, count(rating) as b2_count, sum(rating) as b2_sum FROM mantis_plugin_GaugeSupport_support_data_table GROUP BY bugid, rating HAVING rating = 2) b2 ON sd.bugid = b2.bugid
LEFT OUTER JOIN (SELECT bugid, count(rating) as b1_count, sum(rating) as b1_sum FROM mantis_plugin_GaugeSupport_support_data_table GROUP BY bugid, rating HAVING rating = 1) b1 ON sd.bugid = b1.bugid
WHERE b.project_id = 1 AND b.resolution NOT IN (20,40,50,70,90) AND b.status != 90
GROUP BY sd.bugid
ORDER BY sum(sd.rating) DESC
LIMIT 0,10.
当我添加列"评级"对于查询,我仍然得到错误使用GROUP BY函数的错误:
Database query failed. Error received from database was #1111: Invalid use of group function for the query: SELECT
max(sd.bugid) as bugid,
count(sd.rating) as no_of_ratings,
sum(sd.rating) as sum_of_ratings,
avg(sd.rating) as avg_rating,
max(sd.rating) as highest_rating,
min(sd.rating) as lowest_rating,
IFNULL(bm2_count,0) AS bm2_count,
IFNULL(bm2_sum,0) AS bm2_sum,
IFNULL(bm1_count,0) AS bm1_count,
IFNULL(bm1_sum,0) AS bm1_sum,
IFNULL(b2_count,0) AS b2_count,
IFNULL(b2_sum,0) AS b2_sum,
IFNULL(b1_count,0) AS b1_count,
IFNULL(b1_sum,0) AS b1_sum
FROM mantis_plugin_GaugeSupport_support_data_table sd
INNER JOIN mantis_bug_table b ON sd.bugid = b.id
LEFT OUTER JOIN (SELECT bugid, rating, count(rating) as bm2_count, sum(rating) as bm2_sum FROM mantis_plugin_GaugeSupport_support_data_table GROUP BY bugid, rating HAVING rating = -2) bm2 ON sd.bugid = bm2.bugid
LEFT OUTER JOIN (SELECT bugid, rating, count(rating) as bm1_count, sum(rating) as bm1_sum FROM mantis_plugin_GaugeSupport_support_data_table GROUP BY bugid, rating HAVING rating = -1) bm1 ON sd.bugid = bm1.bugid
LEFT OUTER JOIN (SELECT bugid, rating, count(rating) as b2_count, sum(rating) as b2_sum FROM mantis_plugin_GaugeSupport_support_data_table GROUP BY bugid, rating HAVING rating = 2) b2 ON sd.bugid = b2.bugid
LEFT OUTER JOIN (SELECT bugid, rating, count(rating) as b1_count, sum(rating) as b1_sum FROM mantis_plugin_GaugeSupport_support_data_table GROUP BY bugid, rating HAVING rating = 1) b1 ON sd.bugid = b1.bugid
WHERE b.project_id = 1 AND b.resolution NOT IN (20,40,50,70,90) AND b.status != 90
GROUP BY sd.bugid
ORDER BY sum(sd.rating) DESC
LIMIT 0,10.
有谁知道如何为Mantis设置GaugeSupport插件吗?
谢谢!
答案 0 :(得分:0)
Abhik Chakraborty的评论解决了这个问题:
“您不能在order by子句中使用聚合函数 只需使用sum_of_ratings“。
命令谢谢!