Changeset 3782
- Timestamp:
- 02/15/08 14:49:21 (17 months ago)
- Files:
-
- 3 modified
-
branches/0.10/lib/Doctrine/Query.php (modified) (2 diffs)
-
branches/0.9/lib/Doctrine/Query.php (modified) (1 diff)
-
trunk/lib/Doctrine/Query.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/lib/Doctrine/Query.php
r3476 r3782 1102 1102 $this->_pendingAggregates = array(); 1103 1103 $this->_aggregateAliasMap = array(); 1104 $this->_enumParams = array(); 1104 1105 } 1105 1106 $this->reset(); … … 1114 1115 } 1115 1116 $this->_state = self::STATE_CLEAN; 1116 1117 $params = $this->convertEnums($params); 1118 1117 1118 $params = $this->convertEnums($params); 1119 1119 1120 1120 // Proceed with the generated SQL 1121 1121 1122 1122 if (empty($this->_sqlParts['from'])) { 1123 1123 return false; -
branches/0.9/lib/Doctrine/Query.php
r3562 r3782 1122 1122 $this->pendingAggregates = array(); 1123 1123 $this->aggregateMap = array(); 1124 } 1125 $this->reset(); 1124 $this->_enumParams = array(); 1125 } 1126 $this->reset(); 1126 1127 1127 1128 // parse the DQL parts -
trunk/lib/Doctrine/Query.php
r3701 r3782 1063 1063 $this->_pendingAggregates = array(); 1064 1064 $this->_aggregateAliasMap = array(); 1065 $this->_enumParams = array(); 1065 1066 } 1066 1067 $this->reset(); … … 1075 1076 } 1076 1077 $this->_state = self::STATE_CLEAN; 1077 1078 $params = $this->convertEnums($params); 1079 1078 1079 $params = $this->convertEnums($params); 1080 1080 1081 1081 // Proceed with the generated SQL 1082 1082 1083 1083 if (empty($this->_sqlParts['from'])) { 1084 1084 return false;