diff options
Diffstat (limited to 'src/select.c')
-rw-r--r-- | src/select.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/select.c b/src/select.c index 53aa72755..f472bcd25 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.311 2006/04/07 13:50:37 drh Exp $ +** $Id: select.c,v 1.312 2006/04/11 14:16:21 drh Exp $ */ #include "sqliteInt.h" @@ -2486,11 +2486,6 @@ static int processOrderGroupBy( if( sqlite3ExprResolveNames(pNC, pE) ){ return 1; } - if( sqlite3ExprIsConstant(pE) ){ - sqlite3ErrorMsg(pParse, - "%s BY terms must not be non-integer constants", zType); - return 1; - } } return 0; } |