Merge pull request #2198 from simonwelsh/pgtest

Quote table/column names when falling back to $fullName
This commit is contained in:
Ingo Schommer 2013-07-04 15:50:01 -07:00
commit 573ec9d58b

View File

@ -183,7 +183,8 @@ abstract class SearchFilter extends Object {
if($candidateClass == 'DataObject') {
// fallback to the provided name in the event of a joined column
// name (as the candidate class doesn't check joined records)
return $this->fullName;
$parts = explode('.', $this->fullName);
return '"' . implode('"."', $parts) . '"';
}
return "\"$candidateClass\".\"$this->name\"";