Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
Add case-insensitive support for Postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed Jun 24, 2014
1 parent 7719086 commit b122dc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Controller/Component/PrgComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ protected function _parseFromModel(array $arg, $key = null) {
if (isset($arg['presetType'])) {
$arg['type'] = $arg['presetType'];
unset($arg['presetType']);
} elseif (!isset($arg['type']) || in_array($arg['type'], array('expression', 'query', 'subquery', 'like', 'type'))) {
} elseif (!isset($arg['type']) || in_array($arg['type'], array('expression', 'query', 'subquery', 'like', 'type', 'ilike'))) {
$arg['type'] = 'value';
}

Expand Down

0 comments on commit b122dc7

Please sign in to comment.