aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2007-12-13 07:58:50 +0000
committerdanielk1977 <danielk1977@noemail.net>2007-12-13 07:58:50 +0000
commit01874bfc513a62ff0bb889f9d6755c0df5d06f89 (patch)
tree799432632238d1bee48d8354892db6284c7fa517 /src
parent1e281291fbc1916558d1212034980aa076adcef7 (diff)
downloadsqlite-01874bfc513a62ff0bb889f9d6755c0df5d06f89.tar.gz
sqlite-01874bfc513a62ff0bb889f9d6755c0df5d06f89.zip
Adjust the test suite to account for recent changes related to #2822. Most changes are related to English language error messages only. (CVS 4622)
FossilOrigin-Name: 2f88b9b3e3c9abc3ae4a5dcef82707dd74f8aace
Diffstat (limited to 'src')
-rw-r--r--src/select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select.c b/src/select.c
index 553144f3f..02ec69740 100644
--- a/src/select.c
+++ b/src/select.c
@@ -12,7 +12,7 @@
** This file contains C code routines that are called by the parser
** to handle SELECT statements in SQLite.
**
-** $Id: select.c,v 1.367 2007/12/13 03:45:08 drh Exp $
+** $Id: select.c,v 1.368 2007/12/13 07:58:51 danielk1977 Exp $
*/
#include "sqliteInt.h"
@@ -2825,7 +2825,7 @@ int sqlite3SelectResolve(
return SQLITE_ERROR;
}
if( p->pPrior==0 ){
- if( processOrderGroupBy(pParse, p, p->pOrderBy, 0, &sNC.hasAgg) ){
+ if( processOrderGroupBy(pParse, p, p->pOrderBy, 1, &sNC.hasAgg) ){
return SQLITE_ERROR;
}
}