From ae10e01ed6dccd94104b423f7a98fd7fac904e84 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Thu, 9 Apr 2015 14:39:47 +0200 Subject: [PATCH] EventHistoryQuery: Remove COLLATE from the column `host_name' refs #8613 --- .../library/Monitoring/Backend/Ido/Query/EventHistoryQuery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/EventHistoryQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/EventHistoryQuery.php index 1b87779ce..9c645aedd 100644 --- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/EventHistoryQuery.php +++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/EventHistoryQuery.php @@ -32,8 +32,8 @@ class EventHistoryQuery extends IdoQuery 'cnt_downtime_end' => "SUM(CASE eh.type WHEN 'dt_end' THEN 1 ELSE 0 END)", 'host' => 'eho.name1 COLLATE latin1_general_ci', 'service' => 'eho.name2 COLLATE latin1_general_ci', - 'host_name' => 'eho.name1 COLLATE latin1_general_ci', 'service_description' => 'eho.name2 COLLATE latin1_general_ci', + 'host_name' => 'eho.name1', 'object_type' => 'eh.object_type', 'timestamp' => 'eh.timestamp', 'state' => 'eh.state',