Changeset 5126
- Timestamp:
- 10/21/08 23:33:07 (9 months ago)
- Location:
- branches
- Files:
-
- 2 modified
-
1.0/lib/Doctrine/Query.php (modified) (1 diff)
-
1.1/lib/Doctrine/Query.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Query.php
r5095 r5126 193 193 public function reset() 194 194 { 195 $this->_subqueryAliases = array(); 196 $this->_aggregateAliasMap = array(); 197 $this->_pendingAggregates = array(); 195 198 $this->_pendingJoinConditions = array(); 196 199 $this->_pendingSubqueries = array(); -
branches/1.1/lib/Doctrine/Query.php
r5121 r5126 200 200 public function reset() 201 201 { 202 $this->_subqueryAliases = array(); 203 $this->_aggregateAliasMap = array(); 204 $this->_pendingAggregates = array(); 202 205 $this->_pendingJoinConditions = array(); 203 206 $this->_pendingSubqueries = array(); … … 208 211 $this->_needsSubquery = false; 209 212 $this->_isLimitSubqueryUsed = false; 210 $this->_processedParamIdx = 0;211 213 } 212 214