Skip to content

Commit

Permalink
ContactQuery: Change query column `contact_name' to be case sensitive
Browse files Browse the repository at this point in the history
...and provide `contact' as case-insensitive alternative.

refs #8613
  • Loading branch information
Johannes Meyer committed Apr 10, 2015
1 parent f00adc2 commit 52dcecf
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -8,7 +8,8 @@ class ContactQuery extends IdoQuery
protected $columnMap = array(
'contacts' => array(
'contact_id' => 'c.contact_id',
'contact_name' => 'co.name1 COLLATE latin1_general_ci',
'contact' => 'co.name1 COLLATE latin1_general_ci',
'contact_name' => 'co.name1',
'alias' => 'c.alias COLLATE latin1_general_ci',
'contact_alias_name' => 'c.alias',
'email' => 'c.email_address COLLATE latin1_general_ci',
Expand Down

0 comments on commit 52dcecf

Please sign in to comment.