EventgridQuery: Remove COLLATE from query column `host_name'

refs #8613
This commit is contained in:
Johannes Meyer 2015-04-10 15:54:18 +02:00
parent 629becf2cc
commit 904e91bfa9
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class EventgridQuery extends IdoQuery
'cnt_ok' => 'SUM(CASE WHEN sho.objecttype_id = 2 AND sh.state = 0 THEN 1 ELSE 0 END)',
'host' => 'sho.name1 COLLATE latin1_general_ci',
'service' => 'sho.name2 COLLATE latin1_general_ci',
'host_name' => 'sho.name1 COLLATE latin1_general_ci',
'host_name' => 'sho.name1',
'service_description' => 'sho.name2 COLLATE latin1_general_ci',
'timestamp' => 'UNIX_TIMESTAMP(sh.state_time)'
),