From 9ee248bfe7ba031022cdf54bfce7d4b183175b1f Mon Sep 17 00:00:00 2001 From: jwage Date: Wed, 23 Jan 2008 00:59:30 +0000 Subject: [PATCH] Undid change to reset(), it broke the tests. --- lib/Doctrine/Query.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/lib/Doctrine/Query.php b/lib/Doctrine/Query.php index 9d5239889..819f915ac 100644 --- a/lib/Doctrine/Query.php +++ b/lib/Doctrine/Query.php @@ -193,17 +193,6 @@ 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();