aboutsummaryrefslogtreecommitdiff
path: root/src/select.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2008-12-10 22:15:00 +0000
committerdrh <drh@noemail.net>2008-12-10 22:15:00 +0000
commit4f21c4af30e57d39c5d7873dcab80cb35ee8ab39 (patch)
treee5e1c7fc51ec575fb5f15af56391ddcc7a7742b0 /src/select.c
parent1bd10f8a0063bcbcb75b99f48e70ae312e145aae (diff)
downloadsqlite-4f21c4af30e57d39c5d7873dcab80cb35ee8ab39.tar.gz
sqlite-4f21c4af30e57d39c5d7873dcab80cb35ee8ab39.zip
Fix an issue with the new sqlite3Strlen30() introduced by
check-in (6007). Additional casts for compiler warnings. (CVS 6011) FossilOrigin-Name: 258722b6178f60eaccef1675aab3edc456d413a5
Diffstat (limited to 'src/select.c')
-rw-r--r--src/select.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select.c b/src/select.c
index ffb4be234..03046de31 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.493 2008/12/10 19:26:24 drh Exp $
+** $Id: select.c,v 1.494 2008/12/10 22:15:00 drh Exp $
*/
#include "sqliteInt.h"
@@ -2922,7 +2922,7 @@ static int flattenSubquery(
** 2. There is a single expression in the result set, and it is
** either min(x) or max(x), where x is a column reference.
*/
-static int minMaxQuery(Select *p){
+static u8 minMaxQuery(Select *p){
Expr *pExpr;
ExprList *pEList = p->pEList;