1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Add API functions sqlite3_open_varargs(), sqlite3_open16_varargs() and

sqlite3_complete16(). (CVS 1479)

FossilOrigin-Name: 203af2b2e3a25f4fe0e128e350c21834cad0bd7f
This commit is contained in:
danielk1977
2004-05-27 23:56:16 +00:00
parent d3194f5a4a
commit 61de0d1b99
7 changed files with 138 additions and 21 deletions

View File

@@ -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.179 2004/05/27 10:30:53 danielk1977 Exp $
** $Id: select.c,v 1.180 2004/05/27 23:56:16 danielk1977 Exp $
*/
#include "sqliteInt.h"
@@ -684,7 +684,7 @@ static void generateColumnNames(
/* If this is an EXPLAIN, skip this step */
if( pParse->explain ){
return SQLITE_OK;
return;
}
assert( v!=0 );
@@ -695,7 +695,6 @@ static void generateColumnNames(
sqlite3VdbeSetNumCols(v, pEList->nExpr);
for(i=0; i<pEList->nExpr; i++){
Expr *p;
int p2 = i==pEList->nExpr-1;
p = pEList->a[i].pExpr;
if( p==0 ) continue;
if( pEList->a[i].zName ){