Changeset 3789
- Timestamp:
- 02/15/08 16:57:46 (17 months ago)
- Files:
-
- 3 modified
-
branches/0.10/lib/Doctrine/Query.php (modified) (1 diff)
-
branches/0.9/lib/Doctrine/Query.php (modified) (2 diffs)
-
trunk/lib/Doctrine/Query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/lib/Doctrine/Query.php
r3782 r3789 1102 1102 $this->_pendingAggregates = array(); 1103 1103 $this->_aggregateAliasMap = array(); 1104 $this->_enumParams = array();1105 1104 } 1106 1105 $this->reset(); -
branches/0.9/lib/Doctrine/Query.php
r3787 r3789 1122 1122 $this->pendingAggregates = array(); 1123 1123 $this->aggregateMap = array(); 1124 $this->_enumParams = array();1125 1124 } 1126 1125 $this->reset(); … … 1853 1852 $params = array_merge($this->getParams(), $params); 1854 1853 1854 $params = $this->convertEnums($params); 1855 1855 1856 $results = $this->getConnection()->fetchAll($q, $params); 1856 1857 -
trunk/lib/Doctrine/Query.php
r3782 r3789 1063 1063 $this->_pendingAggregates = array(); 1064 1064 $this->_aggregateAliasMap = array(); 1065 $this->_enumParams = array();1066 1065 } 1067 1066 $this->reset();