Browse Source

fix aggregate selecting bug.

Taylor Otwell 13 years ago
parent
commit
ea13ddfb7f

+ 5 - 0
laravel/database/query/grammars/grammar.php

@@ -75,6 +75,11 @@ class Grammar extends \Laravel\Database\Grammar {
 	 */
 	protected function selects(Query $query)
 	{
+		// Sometimes developers may set a "select" clause on the same query that
+		// is performing in aggregate look-up, such as during pagination. So we
+		// will not generate the select clause if an aggregate is present.
+		if ( ! is_null($query->aggregate)) return;
+
 		$select = ($query->distinct) ? 'SELECT DISTINCT ' : 'SELECT ';
 
 		return $select.$this->columnize($query->selects);

+ 2 - 0
laravel/database/query/grammars/sqlserver.php

@@ -44,6 +44,8 @@ class SQLServer extends Grammar {
 	 */
 	protected function selects(Query $query)
 	{
+		if ( ! is_null($query->aggregate)) return;
+
 		$select = ($query->distinct) ? 'SELECT DISTINCT ' : 'SELECT ';
 
 		// Instead of using a "LIMIT" keyword, SQL Server uses the "TOP"