public function getExistingRows()
 {
     $ret = parent::getExistingRows();
     foreach ($this->_cacheRows as $r) {
         if (!in_array($r, $ret, true)) {
             $ret[] = $r;
         }
     }
     return $ret;
 }