fixed some failing testcases in columnaggregation. the if check was to strict
This commit is contained in:
parent
82f3ae52eb
commit
4e4dc0a6df
1 changed files with 1 additions and 1 deletions
|
@ -1005,7 +1005,7 @@ class Doctrine_Table extends Doctrine_Configurable implements Countable
|
||||||
$inheritanceMap = $table->getOption('inheritanceMap');
|
$inheritanceMap = $table->getOption('inheritanceMap');
|
||||||
$nomatch = false;
|
$nomatch = false;
|
||||||
foreach ($inheritanceMap as $key => $value) {
|
foreach ($inheritanceMap as $key => $value) {
|
||||||
if ( ! isset($this->data[$key]) || $this->data[$key] !== $value) {
|
if ( ! isset($this->data[$key]) || $this->data[$key] != $value) {
|
||||||
$nomatch = true;
|
$nomatch = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue