ServicegroupQuery: Remove COLLATE from query column `servicegroup_name'
...and add a case-insensitive alternative called `servicegroup'. refs #8613
This commit is contained in:
parent
055cd61421
commit
fdd6a4d59b
|
@ -7,8 +7,9 @@ class ServicegroupQuery extends IdoQuery
|
||||||
{
|
{
|
||||||
protected $columnMap = array(
|
protected $columnMap = array(
|
||||||
'servicegroups' => array(
|
'servicegroups' => array(
|
||||||
'servicegroup_name' => 'sgo.name1 COLLATE latin1_general_ci',
|
'servicegroup' => 'sgo.name1 COLLATE latin1_general_ci',
|
||||||
'servicegroup_alias' => 'sg.alias',
|
'servicegroup_name' => 'sgo.name1',
|
||||||
|
'servicegroup_alias' => 'sg.alias'
|
||||||
),
|
),
|
||||||
'services' => array(
|
'services' => array(
|
||||||
'host' => 'so.name1 COLLATE latin1_general_ci',
|
'host' => 'so.name1 COLLATE latin1_general_ci',
|
||||||
|
|
Loading…
Reference in New Issue