Remove COLLATE from host_name and service_description in the Contactgroup query
refs #8614 refs #8613
This commit is contained in:
parent
7212434856
commit
112f8eb2f9
|
@ -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'
|
||||
)
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue