/**
  * Post process
  * Create tables for classes involved in query
  * @return boolean
  */
 protected function postproc()
 {
     $status = true;
     $status &= $this->walk($this->root, 'undoPlaceholder');
     $status &= $this->walk($this->root, 'undoVariable');
     $status &= $this->pm->prepareDbs();
     return $status;
 }
Exemple #2
0
 /**
  * Post process
  * Create tables for classes involved in query
  * @return boolean
  */
 protected function postproc()
 {
     return $this->pm->prepareDbs();
 }