fixes #674
This commit is contained in:
parent
99d309feed
commit
ee3bf044a6
1 changed files with 11 additions and 0 deletions
|
@ -193,6 +193,17 @@ class Doctrine_Query extends Doctrine_Query_Abstract implements Countable, Seria
|
|||
*/
|
||||
public function reset()
|
||||
{
|
||||
$this->_dqlParts = array('from' => array(),
|
||||
'select' => array(),
|
||||
'forUpdate' => false,
|
||||
'set' => array(),
|
||||
'join' => array(),
|
||||
'where' => array(),
|
||||
'groupby' => array(),
|
||||
'having' => array(),
|
||||
'orderby' => array(),
|
||||
'limit' => array(),
|
||||
'offset' => array());
|
||||
$this->_pendingJoinConditions = array();
|
||||
$this->_pendingSubqueries = array();
|
||||
$this->_pendingFields = array();
|
||||
|
|
Loading…
Add table
Reference in a new issue