Remove host_- and service_object_id from ContactQuery's columnMap
We do not use these columns. refs #8614
This commit is contained in:
parent
2df7c60a19
commit
dc223128bb
|
@ -33,12 +33,10 @@ class ContactQuery extends IdoQuery
|
||||||
'contact_notify_service_timeperiod' => 'st.alias COLLATE latin1_general_ci'
|
'contact_notify_service_timeperiod' => 'st.alias COLLATE latin1_general_ci'
|
||||||
),
|
),
|
||||||
'hosts' => array(
|
'hosts' => array(
|
||||||
'host_object_id' => 'ho.object_id',
|
|
||||||
'host_name' => 'ho.name1 COLLATE latin1_general_ci',
|
'host_name' => 'ho.name1 COLLATE latin1_general_ci',
|
||||||
'host' => 'ho.name1 COLLATE latin1_general_ci',
|
'host' => 'ho.name1 COLLATE latin1_general_ci',
|
||||||
),
|
),
|
||||||
'services' => array(
|
'services' => array(
|
||||||
'service_object_id' => 'so.object_id',
|
|
||||||
'service_host_name' => 'so.name1 COLLATE latin1_general_ci',
|
'service_host_name' => 'so.name1 COLLATE latin1_general_ci',
|
||||||
'service' => 'so.name1 COLLATE latin1_general_ci',
|
'service' => 'so.name1 COLLATE latin1_general_ci',
|
||||||
'service_description' => 'so.name2 COLLATE latin1_general_ci',
|
'service_description' => 'so.name2 COLLATE latin1_general_ci',
|
||||||
|
|
Loading…
Reference in New Issue