Remove COLLATE from host_name and service_description in the Contactgroup query

refs #8614
refs #8613
This commit is contained in:
Eric Lippmann 2015-03-12 16:33:28 +01:00
parent 7212434856
commit 112f8eb2f9
1 changed files with 3 additions and 3 deletions

View File

@ -33,13 +33,13 @@ class ContactgroupQuery extends IdoQuery
'contact_notify_host_downtime' => 'c.notify_host_downtime',
),
'hosts' => array(
'host' => 'ho.name1',
'host' => 'ho.name1 COLLATE latin1_general_ci',
'host_name' => 'ho.name1'
),
'services' => array(
'service' => 'so.name2 COLLATE latin1_general_ci',
'service_description' => 'so.name2 COLLATE latin1_general_ci',
'service_host_name' => 'so.name1 COLLATE latin1_general_ci'
'service_description' => 'so.name2',
'service_host_name' => 'so.name1'
)
);