aboutsummaryrefslogtreecommitdiff
path: root/src/select.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2004-05-10 10:34:51 +0000
committerdanielk1977 <danielk1977@noemail.net>2004-05-10 10:34:51 +0000
commit6f8a503d71977f70bb203ee738dfbf5a646851e4 (patch)
treeee420ba1c4afc856c7b2585b33a8e20371680252 /src/select.c
parent24b03fd055b993519961b0cffb2a79a4942fb3c7 (diff)
downloadsqlite-6f8a503d71977f70bb203ee738dfbf5a646851e4.tar.gz
sqlite-6f8a503d71977f70bb203ee738dfbf5a646851e4.zip
Change the names of external symbols from sqlite_XXX to sqlite3_XXX. (CVS 1338)
FossilOrigin-Name: 2242423e31a5e81e89ffcc99e62307c5cc0120d5
Diffstat (limited to 'src/select.c')
-rw-r--r--src/select.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/select.c b/src/select.c
index bd3d7ae51..e913d5dee 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.162 2004/05/08 08:23:32 danielk1977 Exp $
+** $Id: select.c,v 1.163 2004/05/10 10:34:49 danielk1977 Exp $
*/
#include "sqliteInt.h"
@@ -692,7 +692,7 @@ static void generateColumnNames(
int fullNames, shortNames;
assert( v!=0 );
- if( pParse->colNamesSet || v==0 || sqlite_malloc_failed ) return;
+ if( pParse->colNamesSet || v==0 || sqlite3_malloc_failed ) return;
pParse->colNamesSet = 1;
fullNames = (db->flags & SQLITE_FullColNames)!=0;
shortNames = (db->flags & SQLITE_ShortColNames)!=0;
@@ -2007,7 +2007,7 @@ int sqlite3Select(
int distinct; /* Table to use for the distinct set */
int rc = 1; /* Value to return from this function */
- if( sqlite_malloc_failed || pParse->nErr || p==0 ) return 1;
+ if( sqlite3_malloc_failed || pParse->nErr || p==0 ) return 1;
if( sqlite3AuthCheck(pParse, SQLITE_SELECT, 0, 0, 0) ) return 1;
/* If there is are a sequence of queries, do the earlier ones first.