blob: 15678ed6984247549457f67601b50a7e00ad982d [file] [log] [blame]
drh75897232000-05-29 14:26:00 +00001/*
drhb19a2bc2001-09-16 00:13:26 +00002** 2001 September 15
drh75897232000-05-29 14:26:00 +00003**
drhb19a2bc2001-09-16 00:13:26 +00004** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
drh75897232000-05-29 14:26:00 +00006**
drhb19a2bc2001-09-16 00:13:26 +00007** May you do good and not evil.
8** May you find forgiveness for yourself and forgive others.
9** May you share freely, never taking more than you give.
drh75897232000-05-29 14:26:00 +000010**
11*************************************************************************
12** An tokenizer for SQL
13**
14** This file contains C code that splits an SQL input string up into
15** individual tokens and sends those tokens one-by-one over to the
16** parser for analysis.
drh75897232000-05-29 14:26:00 +000017*/
18#include "sqliteInt.h"
drhdcc581c2000-05-30 13:44:19 +000019#include <stdlib.h>
drh75897232000-05-29 14:26:00 +000020
drh34dcee62016-02-08 19:15:48 +000021/* Character classes for tokenizing
22**
23** In the sqlite3GetToken() function, a switch() on aiClass[c] is implemented
24** using a lookup table, whereas a switch() directly on c uses a binary search.
25** The lookup table is much faster. To maximize speed, and to ensure that
26** a lookup table is used, all of the classes need to be small integers and
27** all of them need to be used within the switch.
28*/
drhe96f3612016-02-08 19:36:46 +000029#define CC_X 0 /* The letter 'x', or start of BLOB literal */
drh89743312016-02-08 02:30:50 +000030#define CC_KYWD 1 /* Alphabetics or '_'. Usable in a keyword */
31#define CC_ID 2 /* unicode characters usable in IDs */
32#define CC_DIGIT 3 /* Digits */
33#define CC_DOLLAR 4 /* '$' */
34#define CC_VARALPHA 5 /* '@', '#', ':'. Alphabetic SQL variables */
35#define CC_VARNUM 6 /* '?'. Numeric SQL variables */
36#define CC_SPACE 7 /* Space characters */
37#define CC_QUOTE 8 /* '"', '\'', or '`'. String literals, quoted ids */
38#define CC_QUOTE2 9 /* '['. [...] style quoted ids */
39#define CC_PIPE 10 /* '|'. Bitwise OR or concatenate */
40#define CC_MINUS 11 /* '-'. Minus or SQL-style comment */
41#define CC_LT 12 /* '<'. Part of < or <= or <> */
42#define CC_GT 13 /* '>'. Part of > or >= */
43#define CC_EQ 14 /* '='. Part of = or == */
44#define CC_BANG 15 /* '!'. Part of != */
45#define CC_SLASH 16 /* '/'. / or c-style comment */
46#define CC_LP 17 /* '(' */
47#define CC_RP 18 /* ')' */
48#define CC_SEMI 19 /* ';' */
49#define CC_PLUS 20 /* '+' */
50#define CC_STAR 21 /* '*' */
51#define CC_PERCENT 22 /* '%' */
52#define CC_COMMA 23 /* ',' */
53#define CC_AND 24 /* '&' */
54#define CC_TILDA 25 /* '~' */
55#define CC_DOT 26 /* '.' */
56#define CC_ILLEGAL 27 /* Illegal character */
57
58static const unsigned char aiClass[] = {
drh34dcee62016-02-08 19:15:48 +000059#ifdef SQLITE_ASCII
drh89743312016-02-08 02:30:50 +000060/* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xa xb xc xd xe xf */
61/* 0x */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 7, 7, 27, 7, 7, 27, 27,
62/* 1x */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
63/* 2x */ 7, 15, 8, 5, 4, 22, 24, 8, 17, 18, 21, 20, 23, 11, 26, 16,
64/* 3x */ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 5, 19, 12, 14, 13, 6,
65/* 4x */ 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
66/* 5x */ 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 9, 27, 27, 27, 1,
67/* 6x */ 8, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
68/* 7x */ 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 27, 10, 27, 25, 27,
69/* 8x */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
70/* 9x */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
71/* Ax */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
72/* Bx */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
73/* Cx */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
74/* Dx */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
75/* Ex */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
76/* Fx */ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
drh34dcee62016-02-08 19:15:48 +000077#endif
78#ifdef SQLITE_EBCDIC
79/* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xa xb xc xd xe xf */
80/* 0x */ 27, 27, 27, 27, 27, 7, 27, 27, 27, 27, 27, 27, 7, 7, 27, 27,
81/* 1x */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
82/* 2x */ 27, 27, 27, 27, 27, 7, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
83/* 3x */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27,
drh585a5972016-12-12 01:53:36 +000084/* 4x */ 7, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 26, 12, 17, 20, 10,
drh34dcee62016-02-08 19:15:48 +000085/* 5x */ 24, 27, 27, 27, 27, 27, 27, 27, 27, 27, 15, 4, 21, 18, 19, 27,
drh585a5972016-12-12 01:53:36 +000086/* 6x */ 11, 16, 27, 27, 27, 27, 27, 27, 27, 27, 27, 23, 22, 1, 13, 6,
drh34dcee62016-02-08 19:15:48 +000087/* 7x */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 8, 5, 5, 5, 8, 14, 8,
88/* 8x */ 27, 1, 1, 1, 1, 1, 1, 1, 1, 1, 27, 27, 27, 27, 27, 27,
89/* 9x */ 27, 1, 1, 1, 1, 1, 1, 1, 1, 1, 27, 27, 27, 27, 27, 27,
drh585a5972016-12-12 01:53:36 +000090/* Ax */ 27, 25, 1, 1, 1, 1, 1, 0, 1, 1, 27, 27, 27, 27, 27, 27,
drh34dcee62016-02-08 19:15:48 +000091/* Bx */ 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 9, 27, 27, 27, 27, 27,
92/* Cx */ 27, 1, 1, 1, 1, 1, 1, 1, 1, 1, 27, 27, 27, 27, 27, 27,
93/* Dx */ 27, 1, 1, 1, 1, 1, 1, 1, 1, 1, 27, 27, 27, 27, 27, 27,
94/* Ex */ 27, 27, 1, 1, 1, 1, 1, 0, 1, 1, 27, 27, 27, 27, 27, 27,
95/* Fx */ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 27, 27, 27, 27, 27, 27,
96#endif
drh89743312016-02-08 02:30:50 +000097};
98
drh75897232000-05-29 14:26:00 +000099/*
drh34dcee62016-02-08 19:15:48 +0000100** The charMap() macro maps alphabetic characters (only) into their
drh9b8f4472006-04-04 01:54:55 +0000101** lower-case ASCII equivalent. On ASCII machines, this is just
102** an upper-to-lower case map. On EBCDIC machines we also need
drh34dcee62016-02-08 19:15:48 +0000103** to adjust the encoding. The mapping is only valid for alphabetics
104** which are the only characters for which this feature is used.
105**
106** Used by keywordhash.h
drh9b8f4472006-04-04 01:54:55 +0000107*/
108#ifdef SQLITE_ASCII
109# define charMap(X) sqlite3UpperToLower[(unsigned char)X]
110#endif
111#ifdef SQLITE_EBCDIC
112# define charMap(X) ebcdicToAscii[(unsigned char)X]
113const unsigned char ebcdicToAscii[] = {
114/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
115 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 0x */
116 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 1x */
117 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 2x */
118 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 3x */
119 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 4x */
120 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 5x */
121 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, /* 6x */
122 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* 7x */
123 0, 97, 98, 99,100,101,102,103,104,105, 0, 0, 0, 0, 0, 0, /* 8x */
124 0,106,107,108,109,110,111,112,113,114, 0, 0, 0, 0, 0, 0, /* 9x */
125 0, 0,115,116,117,118,119,120,121,122, 0, 0, 0, 0, 0, 0, /* Ax */
126 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Bx */
127 0, 97, 98, 99,100,101,102,103,104,105, 0, 0, 0, 0, 0, 0, /* Cx */
128 0,106,107,108,109,110,111,112,113,114, 0, 0, 0, 0, 0, 0, /* Dx */
129 0, 0,115,116,117,118,119,120,121,122, 0, 0, 0, 0, 0, 0, /* Ex */
130 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Fx */
131};
132#endif
133
134/*
drh52fb6d72004-11-03 03:59:57 +0000135** The sqlite3KeywordCode function looks up an identifier to determine if
136** it is a keyword. If it is a keyword, the token code of that keyword is
drh75897232000-05-29 14:26:00 +0000137** returned. If the input is not a keyword, TK_ID is returned.
drh2090a0e2004-10-07 19:03:01 +0000138**
139** The implementation of this routine was generated by a program,
drhe96f3612016-02-08 19:36:46 +0000140** mkkeywordhash.c, located in the tool subdirectory of the distribution.
drh52fb6d72004-11-03 03:59:57 +0000141** The output of the mkkeywordhash.c program is written into a file
drh73b211a2005-01-18 04:00:42 +0000142** named keywordhash.h and then included into this source file by
drh52fb6d72004-11-03 03:59:57 +0000143** the #include below.
drh75897232000-05-29 14:26:00 +0000144*/
drh73b211a2005-01-18 04:00:42 +0000145#include "keywordhash.h"
drh75897232000-05-29 14:26:00 +0000146
drh40f20f72004-10-23 05:10:18 +0000147
drh98808ba2001-10-18 12:34:46 +0000148/*
drh9b8f4472006-04-04 01:54:55 +0000149** If X is a character that can be used in an identifier then
150** IdChar(X) will be true. Otherwise it is false.
drh98808ba2001-10-18 12:34:46 +0000151**
drh9b8f4472006-04-04 01:54:55 +0000152** For ASCII, any character with the high-order bit set is
153** allowed in an identifier. For 7-bit characters,
154** sqlite3IsIdChar[X] must be 1.
155**
156** For EBCDIC, the rules are more complex but have the same
157** end result.
drha0d1f662005-01-11 17:59:47 +0000158**
159** Ticket #1066. the SQL standard does not allow '$' in the
peter.d.reid60ec9142014-09-06 16:39:46 +0000160** middle of identifiers. But many SQL implementations do.
drha0d1f662005-01-11 17:59:47 +0000161** SQLite will allow '$' in identifiers for compatibility.
162** But the feature is undocumented.
drh98808ba2001-10-18 12:34:46 +0000163*/
drh9b8f4472006-04-04 01:54:55 +0000164#ifdef SQLITE_ASCII
drhaf2b5722009-11-16 15:11:51 +0000165#define IdChar(C) ((sqlite3CtypeMap[(unsigned char)C]&0x46)!=0)
drh9b8f4472006-04-04 01:54:55 +0000166#endif
167#ifdef SQLITE_EBCDIC
drh46c99e02007-08-27 23:26:59 +0000168const char sqlite3IsEbcdicIdChar[] = {
drh9b8f4472006-04-04 01:54:55 +0000169/* x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 xA xB xC xD xE xF */
170 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, /* 4x */
171 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, /* 5x */
172 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, /* 6x */
173 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, /* 7x */
174 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, /* 8x */
175 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, /* 9x */
176 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, /* Ax */
177 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* Bx */
178 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, /* Cx */
179 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, /* Dx */
180 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, /* Ex */
181 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, /* Fx */
182};
drh46c99e02007-08-27 23:26:59 +0000183#define IdChar(C) (((c=C)>=0x42 && sqlite3IsEbcdicIdChar[c-0x40]))
drh9b8f4472006-04-04 01:54:55 +0000184#endif
drhf5ed7ad2015-06-15 14:43:25 +0000185
186/* Make the IdChar function accessible from ctime.c */
187#ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS
drh97348b32014-09-25 02:44:29 +0000188int sqlite3IsIdChar(u8 c){ return IdChar(c); }
drhf5ed7ad2015-06-15 14:43:25 +0000189#endif
drh9b8f4472006-04-04 01:54:55 +0000190
dan34a7d792018-06-29 20:43:33 +0000191#ifndef SQLITE_OMIT_WINDOWFUNC
dan59ff4252018-06-29 17:44:52 +0000192/*
193** Return the id of the next token in string (*pz). Before returning, set
194** (*pz) to point to the byte following the parsed token.
dan59ff4252018-06-29 17:44:52 +0000195*/
dan6e2210e2018-06-30 18:54:56 +0000196static int getToken(const unsigned char **pz){
dan59ff4252018-06-29 17:44:52 +0000197 const unsigned char *z = *pz;
dan6e2210e2018-06-30 18:54:56 +0000198 int t; /* Token type to return */
199 do {
200 z += sqlite3GetToken(z, &t);
201 }while( t==TK_SPACE );
202 if( t==TK_ID
203 || t==TK_STRING
204 || t==TK_JOIN_KW
205 || t==TK_WINDOW
206 || t==TK_OVER
207 || sqlite3ParserFallback(t)==TK_ID
208 ){
209 t = TK_ID;
dan59ff4252018-06-29 17:44:52 +0000210 }
211 *pz = z;
dan6e2210e2018-06-30 18:54:56 +0000212 return t;
dan59ff4252018-06-29 17:44:52 +0000213}
214
215/*
dan6e2210e2018-06-30 18:54:56 +0000216** The following three functions are called immediately after the tokenizer
217** reads the keywords WINDOW, OVER and FILTER, respectively, to determine
218** whether the token should be treated as a keyword or an SQL identifier.
219** This cannot be handled by the usual lemon %fallback method, due to
220** the ambiguity in some constructions. e.g.
dan59ff4252018-06-29 17:44:52 +0000221**
dan6e2210e2018-06-30 18:54:56 +0000222** SELECT sum(x) OVER ...
dan59ff4252018-06-29 17:44:52 +0000223**
dan6e2210e2018-06-30 18:54:56 +0000224** In the above, "OVER" might be a keyword, or it might be an alias for the
225** sum(x) expression. If a "%fallback ID OVER" directive were added to
226** grammar, then SQLite would always treat "OVER" as an alias, making it
227** impossible to call a window-function without a FILTER clause.
228**
229** WINDOW is treated as a keyword if:
230**
231** * the following token is an identifier, or a keyword that can fallback
232** to being an identifier, and
233** * the token after than one is TK_AS.
234**
235** OVER is a keyword if:
236**
237** * the previous token was TK_RP, and
238** * the next token is either TK_LP or an identifier.
239**
240** FILTER is a keyword if:
241**
242** * the previous token was TK_RP, and
243** * the next token is TK_LP.
dan59ff4252018-06-29 17:44:52 +0000244*/
dan769309f2018-06-29 19:54:51 +0000245static int analyzeWindowKeyword(const unsigned char *z){
dan59ff4252018-06-29 17:44:52 +0000246 int t;
dan6e2210e2018-06-30 18:54:56 +0000247 t = getToken(&z);
248 if( t!=TK_ID ) return TK_ID;
249 t = getToken(&z);
250 if( t!=TK_AS ) return TK_ID;
251 return TK_WINDOW;
252}
253static int analyzeOverKeyword(const unsigned char *z, int lastToken){
254 if( lastToken==TK_RP ){
255 int t = getToken(&z);
256 if( t==TK_LP || t==TK_ID ) return TK_OVER;
dan59ff4252018-06-29 17:44:52 +0000257 }
dan6e2210e2018-06-30 18:54:56 +0000258 return TK_ID;
259}
260static int analyzeFilterKeyword(const unsigned char *z, int lastToken){
261 if( lastToken==TK_RP && getToken(&z)==TK_LP ){
262 return TK_FILTER;
263 }
264 return TK_ID;
dan59ff4252018-06-29 17:44:52 +0000265}
dan34a7d792018-06-29 20:43:33 +0000266#endif // SQLITE_OMIT_WINDOWFUNC
drh98808ba2001-10-18 12:34:46 +0000267
drh75897232000-05-29 14:26:00 +0000268/*
drhe96f3612016-02-08 19:36:46 +0000269** Return the length (in bytes) of the token that begins at z[0].
drh61b487d2003-09-12 02:08:14 +0000270** Store the token type in *tokenType before returning.
drh75897232000-05-29 14:26:00 +0000271*/
drh35b5a332008-04-05 18:41:42 +0000272int sqlite3GetToken(const unsigned char *z, int *tokenType){
drhaa756b02004-09-25 15:25:26 +0000273 int i, c;
drhe96f3612016-02-08 19:36:46 +0000274 switch( aiClass[*z] ){ /* Switch on the character-class of the first byte
275 ** of the token. See the comment on the CC_ defines
276 ** above. */
drh89743312016-02-08 02:30:50 +0000277 case CC_SPACE: {
drh19f81f62009-06-09 18:01:37 +0000278 testcase( z[0]==' ' );
279 testcase( z[0]=='\t' );
280 testcase( z[0]=='\n' );
281 testcase( z[0]=='\f' );
282 testcase( z[0]=='\r' );
danielk197778ca0e72009-01-20 16:53:39 +0000283 for(i=1; sqlite3Isspace(z[i]); i++){}
drh75897232000-05-29 14:26:00 +0000284 *tokenType = TK_SPACE;
285 return i;
286 }
drh89743312016-02-08 02:30:50 +0000287 case CC_MINUS: {
drh75897232000-05-29 14:26:00 +0000288 if( z[1]=='-' ){
drhaa756b02004-09-25 15:25:26 +0000289 for(i=2; (c=z[i])!=0 && c!='\n'; i++){}
drhd3479b92009-12-14 17:42:12 +0000290 *tokenType = TK_SPACE; /* IMP: R-22934-25134 */
drh75897232000-05-29 14:26:00 +0000291 return i;
292 }
293 *tokenType = TK_MINUS;
294 return 1;
295 }
drh89743312016-02-08 02:30:50 +0000296 case CC_LP: {
drhdab35182003-09-27 13:39:38 +0000297 *tokenType = TK_LP;
298 return 1;
drh75897232000-05-29 14:26:00 +0000299 }
drh89743312016-02-08 02:30:50 +0000300 case CC_RP: {
drh75897232000-05-29 14:26:00 +0000301 *tokenType = TK_RP;
302 return 1;
303 }
drh89743312016-02-08 02:30:50 +0000304 case CC_SEMI: {
drh75897232000-05-29 14:26:00 +0000305 *tokenType = TK_SEMI;
306 return 1;
307 }
drh89743312016-02-08 02:30:50 +0000308 case CC_PLUS: {
drh75897232000-05-29 14:26:00 +0000309 *tokenType = TK_PLUS;
310 return 1;
311 }
drh89743312016-02-08 02:30:50 +0000312 case CC_STAR: {
drh75897232000-05-29 14:26:00 +0000313 *tokenType = TK_STAR;
314 return 1;
315 }
drh89743312016-02-08 02:30:50 +0000316 case CC_SLASH: {
drh66105a82002-08-27 14:28:29 +0000317 if( z[1]!='*' || z[2]==0 ){
318 *tokenType = TK_SLASH;
319 return 1;
320 }
drhaa756b02004-09-25 15:25:26 +0000321 for(i=3, c=z[2]; (c!='*' || z[i]!='/') && (c=z[i])!=0; i++){}
322 if( c ) i++;
drhd3479b92009-12-14 17:42:12 +0000323 *tokenType = TK_SPACE; /* IMP: R-22934-25134 */
drh66105a82002-08-27 14:28:29 +0000324 return i;
drh75897232000-05-29 14:26:00 +0000325 }
drh89743312016-02-08 02:30:50 +0000326 case CC_PERCENT: {
drhbf4133c2001-10-13 02:59:08 +0000327 *tokenType = TK_REM;
328 return 1;
329 }
drh89743312016-02-08 02:30:50 +0000330 case CC_EQ: {
drh75897232000-05-29 14:26:00 +0000331 *tokenType = TK_EQ;
332 return 1 + (z[1]=='=');
333 }
drh89743312016-02-08 02:30:50 +0000334 case CC_LT: {
drhaa756b02004-09-25 15:25:26 +0000335 if( (c=z[1])=='=' ){
drh75897232000-05-29 14:26:00 +0000336 *tokenType = TK_LE;
337 return 2;
drhaa756b02004-09-25 15:25:26 +0000338 }else if( c=='>' ){
drh75897232000-05-29 14:26:00 +0000339 *tokenType = TK_NE;
340 return 2;
drhaa756b02004-09-25 15:25:26 +0000341 }else if( c=='<' ){
drhbf4133c2001-10-13 02:59:08 +0000342 *tokenType = TK_LSHIFT;
343 return 2;
drh75897232000-05-29 14:26:00 +0000344 }else{
345 *tokenType = TK_LT;
346 return 1;
347 }
348 }
drh89743312016-02-08 02:30:50 +0000349 case CC_GT: {
drhaa756b02004-09-25 15:25:26 +0000350 if( (c=z[1])=='=' ){
drh75897232000-05-29 14:26:00 +0000351 *tokenType = TK_GE;
352 return 2;
drhaa756b02004-09-25 15:25:26 +0000353 }else if( c=='>' ){
drhbf4133c2001-10-13 02:59:08 +0000354 *tokenType = TK_RSHIFT;
355 return 2;
drh75897232000-05-29 14:26:00 +0000356 }else{
357 *tokenType = TK_GT;
358 return 1;
359 }
360 }
drh89743312016-02-08 02:30:50 +0000361 case CC_BANG: {
drh75897232000-05-29 14:26:00 +0000362 if( z[1]!='=' ){
363 *tokenType = TK_ILLEGAL;
drhb2bddbb2016-02-18 14:49:28 +0000364 return 1;
drh75897232000-05-29 14:26:00 +0000365 }else{
366 *tokenType = TK_NE;
367 return 2;
368 }
369 }
drh89743312016-02-08 02:30:50 +0000370 case CC_PIPE: {
drh00400772000-06-16 20:51:26 +0000371 if( z[1]!='|' ){
drhbf4133c2001-10-13 02:59:08 +0000372 *tokenType = TK_BITOR;
drh00400772000-06-16 20:51:26 +0000373 return 1;
374 }else{
375 *tokenType = TK_CONCAT;
376 return 2;
377 }
378 }
drh89743312016-02-08 02:30:50 +0000379 case CC_COMMA: {
drh75897232000-05-29 14:26:00 +0000380 *tokenType = TK_COMMA;
381 return 1;
382 }
drh89743312016-02-08 02:30:50 +0000383 case CC_AND: {
drhbf4133c2001-10-13 02:59:08 +0000384 *tokenType = TK_BITAND;
385 return 1;
386 }
drh89743312016-02-08 02:30:50 +0000387 case CC_TILDA: {
drhbf4133c2001-10-13 02:59:08 +0000388 *tokenType = TK_BITNOT;
389 return 1;
390 }
drh89743312016-02-08 02:30:50 +0000391 case CC_QUOTE: {
drh75897232000-05-29 14:26:00 +0000392 int delim = z[0];
drh19f81f62009-06-09 18:01:37 +0000393 testcase( delim=='`' );
394 testcase( delim=='\'' );
395 testcase( delim=='"' );
drhaa756b02004-09-25 15:25:26 +0000396 for(i=1; (c=z[i])!=0; i++){
397 if( c==delim ){
drh75897232000-05-29 14:26:00 +0000398 if( z[i+1]==delim ){
399 i++;
400 }else{
401 break;
402 }
403 }
404 }
drha33cb5f2008-08-07 13:05:34 +0000405 if( c=='\'' ){
drheef8b552005-10-23 11:29:40 +0000406 *tokenType = TK_STRING;
407 return i+1;
drha33cb5f2008-08-07 13:05:34 +0000408 }else if( c!=0 ){
409 *tokenType = TK_ID;
410 return i+1;
drheef8b552005-10-23 11:29:40 +0000411 }else{
412 *tokenType = TK_ILLEGAL;
413 return i;
414 }
drh75897232000-05-29 14:26:00 +0000415 }
drh89743312016-02-08 02:30:50 +0000416 case CC_DOT: {
drh76816182005-08-23 11:31:26 +0000417#ifndef SQLITE_OMIT_FLOATING_POINT
danielk197778ca0e72009-01-20 16:53:39 +0000418 if( !sqlite3Isdigit(z[1]) )
drh76816182005-08-23 11:31:26 +0000419#endif
420 {
421 *tokenType = TK_DOT;
422 return 1;
423 }
424 /* If the next character is a digit, this is a floating point
425 ** number that begins with ".". Fall thru into the next case */
drh75897232000-05-29 14:26:00 +0000426 }
drh89743312016-02-08 02:30:50 +0000427 case CC_DIGIT: {
drh19f81f62009-06-09 18:01:37 +0000428 testcase( z[0]=='0' ); testcase( z[0]=='1' ); testcase( z[0]=='2' );
429 testcase( z[0]=='3' ); testcase( z[0]=='4' ); testcase( z[0]=='5' );
430 testcase( z[0]=='6' ); testcase( z[0]=='7' ); testcase( z[0]=='8' );
431 testcase( z[0]=='9' );
drhc837e702000-06-08 16:26:24 +0000432 *tokenType = TK_INTEGER;
drh28e048c2014-07-23 01:26:51 +0000433#ifndef SQLITE_OMIT_HEX_INTEGER
434 if( z[0]=='0' && (z[1]=='x' || z[1]=='X') && sqlite3Isxdigit(z[2]) ){
435 for(i=3; sqlite3Isxdigit(z[i]); i++){}
436 return i;
437 }
438#endif
danielk197778ca0e72009-01-20 16:53:39 +0000439 for(i=0; sqlite3Isdigit(z[i]); i++){}
drhb7f91642004-10-31 02:22:47 +0000440#ifndef SQLITE_OMIT_FLOATING_POINT
drh76816182005-08-23 11:31:26 +0000441 if( z[i]=='.' ){
442 i++;
danielk197778ca0e72009-01-20 16:53:39 +0000443 while( sqlite3Isdigit(z[i]) ){ i++; }
drhc837e702000-06-08 16:26:24 +0000444 *tokenType = TK_FLOAT;
445 }
446 if( (z[i]=='e' || z[i]=='E') &&
danielk197778ca0e72009-01-20 16:53:39 +0000447 ( sqlite3Isdigit(z[i+1])
448 || ((z[i+1]=='+' || z[i+1]=='-') && sqlite3Isdigit(z[i+2]))
drh75897232000-05-29 14:26:00 +0000449 )
drhc837e702000-06-08 16:26:24 +0000450 ){
451 i += 2;
danielk197778ca0e72009-01-20 16:53:39 +0000452 while( sqlite3Isdigit(z[i]) ){ i++; }
drh75897232000-05-29 14:26:00 +0000453 *tokenType = TK_FLOAT;
drh75897232000-05-29 14:26:00 +0000454 }
drhb7f91642004-10-31 02:22:47 +0000455#endif
drh67dd9012006-08-12 12:33:14 +0000456 while( IdChar(z[i]) ){
457 *tokenType = TK_ILLEGAL;
458 i++;
459 }
drh75897232000-05-29 14:26:00 +0000460 return i;
461 }
drh89743312016-02-08 02:30:50 +0000462 case CC_QUOTE2: {
drhaa756b02004-09-25 15:25:26 +0000463 for(i=1, c=z[0]; c!=']' && (c=z[i])!=0; i++){}
drh4b2f9362008-01-22 23:37:09 +0000464 *tokenType = c==']' ? TK_ID : TK_ILLEGAL;
drh2f4392f2002-02-14 21:42:51 +0000465 return i;
466 }
drh89743312016-02-08 02:30:50 +0000467 case CC_VARNUM: {
drh50457892003-09-06 01:10:47 +0000468 *tokenType = TK_VARIABLE;
danielk197778ca0e72009-01-20 16:53:39 +0000469 for(i=1; sqlite3Isdigit(z[i]); i++){}
drhfa6bc002004-09-07 16:19:52 +0000470 return i;
drh50457892003-09-06 01:10:47 +0000471 }
drh89743312016-02-08 02:30:50 +0000472 case CC_DOLLAR:
473 case CC_VARALPHA: {
drh288d37f2005-06-22 08:48:06 +0000474 int n = 0;
drhf59b12f2014-01-11 03:54:05 +0000475 testcase( z[0]=='$' ); testcase( z[0]=='@' );
476 testcase( z[0]==':' ); testcase( z[0]=='#' );
drh9d74b4c2004-08-24 15:23:34 +0000477 *tokenType = TK_VARIABLE;
drh288d37f2005-06-22 08:48:06 +0000478 for(i=1; (c=z[i])!=0; i++){
479 if( IdChar(c) ){
480 n++;
481#ifndef SQLITE_OMIT_TCL_VARIABLE
482 }else if( c=='(' && n>0 ){
483 do{
484 i++;
danielk197778ca0e72009-01-20 16:53:39 +0000485 }while( (c=z[i])!=0 && !sqlite3Isspace(c) && c!=')' );
drh288d37f2005-06-22 08:48:06 +0000486 if( c==')' ){
drh895d7472004-08-20 16:02:39 +0000487 i++;
488 }else{
drh288d37f2005-06-22 08:48:06 +0000489 *tokenType = TK_ILLEGAL;
drh895d7472004-08-20 16:02:39 +0000490 }
drh288d37f2005-06-22 08:48:06 +0000491 break;
492 }else if( c==':' && z[i+1]==':' ){
493 i++;
494#endif
495 }else{
496 break;
drh895d7472004-08-20 16:02:39 +0000497 }
498 }
drh288d37f2005-06-22 08:48:06 +0000499 if( n==0 ) *tokenType = TK_ILLEGAL;
drh895d7472004-08-20 16:02:39 +0000500 return i;
drhb7f91642004-10-31 02:22:47 +0000501 }
drhe96f3612016-02-08 19:36:46 +0000502 case CC_KYWD: {
503 for(i=1; aiClass[z[i]]<=CC_KYWD; i++){}
504 if( IdChar(z[i]) ){
505 /* This token started out using characters that can appear in keywords,
506 ** but z[i] is a character not allowed within keywords, so this must
507 ** be an identifier instead */
508 i++;
509 break;
510 }
511 *tokenType = TK_ID;
dan769309f2018-06-29 19:54:51 +0000512 return keywordCode((char*)z, i, tokenType);
drhe96f3612016-02-08 19:36:46 +0000513 }
drh89743312016-02-08 02:30:50 +0000514 case CC_X: {
dana73086d2016-02-24 16:14:07 +0000515#ifndef SQLITE_OMIT_BLOB_LITERAL
drh19f81f62009-06-09 18:01:37 +0000516 testcase( z[0]=='x' ); testcase( z[0]=='X' );
drh4b2f9362008-01-22 23:37:09 +0000517 if( z[1]=='\'' ){
danielk19773fd0a732004-05-27 13:35:19 +0000518 *tokenType = TK_BLOB;
drh3a61a5a2011-06-03 21:34:45 +0000519 for(i=2; sqlite3Isxdigit(z[i]); i++){}
520 if( z[i]!='\'' || i%2 ){
521 *tokenType = TK_ILLEGAL;
522 while( z[i] && z[i]!='\'' ){ i++; }
danielk1977c572ef72004-05-27 09:28:41 +0000523 }
drh3a61a5a2011-06-03 21:34:45 +0000524 if( z[i] ) i++;
danielk1977c572ef72004-05-27 09:28:41 +0000525 return i;
526 }
dana73086d2016-02-24 16:14:07 +0000527#endif
drhe96f3612016-02-08 19:36:46 +0000528 /* If it is not a BLOB literal, then it must be an ID, since no
529 ** SQL keywords start with the letter 'x'. Fall through */
danielk1977c572ef72004-05-27 09:28:41 +0000530 }
drh89743312016-02-08 02:30:50 +0000531 case CC_ID: {
532 i = 1;
533 break;
534 }
drh98808ba2001-10-18 12:34:46 +0000535 default: {
drh89743312016-02-08 02:30:50 +0000536 *tokenType = TK_ILLEGAL;
537 return 1;
drh75897232000-05-29 14:26:00 +0000538 }
drh75897232000-05-29 14:26:00 +0000539 }
drh34dcee62016-02-08 19:15:48 +0000540 while( IdChar(z[i]) ){ i++; }
drh89743312016-02-08 02:30:50 +0000541 *tokenType = TK_ID;
542 return i;
drh75897232000-05-29 14:26:00 +0000543}
544
545/*
546** Run the parser on the given SQL string. The parser structure is
drhb19a2bc2001-09-16 00:13:26 +0000547** passed in. An SQLITE_ status code is returned. If an error occurs
drhfb45d8c2008-07-08 00:06:49 +0000548** then an and attempt is made to write an error message into
549** memory obtained from sqlite3_malloc() and to make *pzErrMsg point to that
550** error message.
drh75897232000-05-29 14:26:00 +0000551*/
danielk19774adee202004-05-08 08:23:19 +0000552int sqlite3RunParser(Parse *pParse, const char *zSql, char **pzErrMsg){
drhd9da78a2009-03-24 15:08:09 +0000553 int nErr = 0; /* Number of errors encountered */
drhd9da78a2009-03-24 15:08:09 +0000554 void *pEngine; /* The LEMON-generated LALR(1) parser */
drh9b38d662017-03-07 14:38:52 +0000555 int n = 0; /* Length of the next token token */
drhd9da78a2009-03-24 15:08:09 +0000556 int tokenType; /* type of the next token */
557 int lastTokenParsed = -1; /* type of the previous token */
drhd9da78a2009-03-24 15:08:09 +0000558 sqlite3 *db = pParse->db; /* The database connection */
559 int mxSqlLen; /* Max length of an SQL string */
drhd26cc542017-01-28 20:46:37 +0000560#ifdef sqlite3Parser_ENGINEALWAYSONSTACK
drh53b24592017-03-30 17:13:37 +0000561 yyParser sEngine; /* Space to hold the Lemon-generated Parser object */
drhd26cc542017-01-28 20:46:37 +0000562#endif
drh75897232000-05-29 14:26:00 +0000563
drh96c707a2015-02-13 16:36:14 +0000564 assert( zSql!=0 );
drhd9da78a2009-03-24 15:08:09 +0000565 mxSqlLen = db->aLimit[SQLITE_LIMIT_SQL_LENGTH];
drh4f7d3a52013-06-27 23:54:02 +0000566 if( db->nVdbeActive==0 ){
drh15ca1df2006-07-26 13:43:30 +0000567 db->u1.isInterrupted = 0;
568 }
drh4c504392000-10-16 22:06:40 +0000569 pParse->rc = SQLITE_OK;
drhe7f3f3e2009-07-03 22:54:36 +0000570 pParse->zTail = zSql;
drhfb45d8c2008-07-08 00:06:49 +0000571 assert( pzErrMsg!=0 );
drh3bd48ab2015-09-07 18:23:37 +0000572 /* sqlite3ParserTrace(stdout, "parser: "); */
drhd26cc542017-01-28 20:46:37 +0000573#ifdef sqlite3Parser_ENGINEALWAYSONSTACK
drh53b24592017-03-30 17:13:37 +0000574 pEngine = &sEngine;
drhfb32c442018-04-21 13:51:42 +0000575 sqlite3ParserInit(pEngine, pParse);
drhd26cc542017-01-28 20:46:37 +0000576#else
drhfb32c442018-04-21 13:51:42 +0000577 pEngine = sqlite3ParserAlloc(sqlite3Malloc, pParse);
drh75897232000-05-29 14:26:00 +0000578 if( pEngine==0 ){
drh4a642b62016-02-05 01:55:27 +0000579 sqlite3OomFault(db);
mistachkinfad30392016-02-13 23:43:46 +0000580 return SQLITE_NOMEM_BKPT;
drh75897232000-05-29 14:26:00 +0000581 }
drhd26cc542017-01-28 20:46:37 +0000582#endif
drhfa6bc002004-09-07 16:19:52 +0000583 assert( pParse->pNewTable==0 );
584 assert( pParse->pNewTrigger==0 );
585 assert( pParse->nVar==0 );
drh9bf755c2016-12-23 03:59:31 +0000586 assert( pParse->pVList==0 );
drh167fbbe2016-08-10 14:40:00 +0000587 while( 1 ){
dand437ac02018-06-29 20:21:24 +0000588 n = sqlite3GetToken((u8*)zSql, &tokenType);
589 mxSqlLen -= n;
590 if( mxSqlLen<0 ){
591 pParse->rc = SQLITE_TOOBIG;
592 break;
drhe5c941b2007-05-08 13:58:26 +0000593 }
dan34a7d792018-06-29 20:43:33 +0000594#ifndef SQLITE_OMIT_WINDOWFUNC
595 if( tokenType>=TK_WINDOW ){
dan6e2210e2018-06-30 18:54:56 +0000596 assert( tokenType==TK_SPACE || tokenType==TK_OVER || tokenType==TK_FILTER
dan34a7d792018-06-29 20:43:33 +0000597 || tokenType==TK_ILLEGAL || tokenType==TK_WINDOW
598 );
599#else
drh0739e452015-11-09 02:08:09 +0000600 if( tokenType>=TK_SPACE ){
601 assert( tokenType==TK_SPACE || tokenType==TK_ILLEGAL );
dan34a7d792018-06-29 20:43:33 +0000602#endif // SQLITE_OMIT_WINDOWFUNC
drh0739e452015-11-09 02:08:09 +0000603 if( db->u1.isInterrupted ){
drh0739e452015-11-09 02:08:09 +0000604 pParse->rc = SQLITE_INTERRUPT;
drh75897232000-05-29 14:26:00 +0000605 break;
606 }
dand437ac02018-06-29 20:21:24 +0000607 if( tokenType==TK_SPACE ){
608 zSql += n;
609 continue;
610 }
611 if( zSql[0]==0 ){
612 /* Upon reaching the end of input, call the parser two more times
613 ** with tokens TK_SEMI and 0, in that order. */
614 if( lastTokenParsed==TK_SEMI ){
615 tokenType = 0;
616 }else if( lastTokenParsed==0 ){
617 break;
618 }else{
619 tokenType = TK_SEMI;
620 }
621 n = 0;
dan34a7d792018-06-29 20:43:33 +0000622#ifndef SQLITE_OMIT_WINDOWFUNC
623 }else if( tokenType==TK_WINDOW ){
dan6e2210e2018-06-30 18:54:56 +0000624 assert( n==6 );
dan34a7d792018-06-29 20:43:33 +0000625 tokenType = analyzeWindowKeyword((const u8*)&zSql[6]);
dan6e2210e2018-06-30 18:54:56 +0000626 }else if( tokenType==TK_OVER ){
627 assert( n==4 );
628 tokenType = analyzeOverKeyword((const u8*)&zSql[4], lastTokenParsed);
629 }else if( tokenType==TK_FILTER ){
630 assert( n==6 );
631 tokenType = analyzeFilterKeyword((const u8*)&zSql[6], lastTokenParsed);
dan34a7d792018-06-29 20:43:33 +0000632#endif // SQLITE_OMIT_WINDOWFUNC
dand437ac02018-06-29 20:21:24 +0000633 }else{
drh9b38d662017-03-07 14:38:52 +0000634 sqlite3ErrorMsg(pParse, "unrecognized token: \"%.*s\"", n, zSql);
drh75897232000-05-29 14:26:00 +0000635 break;
drh32eb7b42003-01-07 01:44:37 +0000636 }
drh75897232000-05-29 14:26:00 +0000637 }
dand437ac02018-06-29 20:21:24 +0000638 pParse->sLastToken.z = zSql;
639 pParse->sLastToken.n = n;
640 sqlite3Parser(pEngine, tokenType, pParse->sLastToken);
641 lastTokenParsed = tokenType;
642 zSql += n;
643 if( pParse->rc!=SQLITE_OK || db->mallocFailed ) break;
drh75897232000-05-29 14:26:00 +0000644 }
drh0be0cf62015-04-15 08:37:42 +0000645 assert( nErr==0 );
drhec424a52008-07-25 15:39:03 +0000646#ifdef YYTRACKMAXSTACKDEPTH
drhaf89fe62015-03-23 17:25:18 +0000647 sqlite3_mutex_enter(sqlite3MallocMutex());
drhb02392e2015-10-15 15:28:56 +0000648 sqlite3StatusHighwater(SQLITE_STATUS_PARSER_STACK,
drhec424a52008-07-25 15:39:03 +0000649 sqlite3ParserStackPeak(pEngine)
650 );
drhaf89fe62015-03-23 17:25:18 +0000651 sqlite3_mutex_leave(sqlite3MallocMutex());
drhec424a52008-07-25 15:39:03 +0000652#endif /* YYDEBUG */
drhd26cc542017-01-28 20:46:37 +0000653#ifdef sqlite3Parser_ENGINEALWAYSONSTACK
654 sqlite3ParserFinalize(pEngine);
655#else
drh17435752007-08-16 04:30:38 +0000656 sqlite3ParserFree(pEngine, sqlite3_free);
drhd26cc542017-01-28 20:46:37 +0000657#endif
drh17435752007-08-16 04:30:38 +0000658 if( db->mallocFailed ){
mistachkinfad30392016-02-13 23:43:46 +0000659 pParse->rc = SQLITE_NOMEM_BKPT;
drh71c697e2004-08-08 23:39:19 +0000660 }
drhb86ccfb2003-01-28 23:13:10 +0000661 if( pParse->rc!=SQLITE_OK && pParse->rc!=SQLITE_DONE && pParse->zErrMsg==0 ){
drh22c17b82015-05-15 04:13:15 +0000662 pParse->zErrMsg = sqlite3MPrintf(db, "%s", sqlite3ErrStr(pParse->rc));
drhb86ccfb2003-01-28 23:13:10 +0000663 }
drh19f81f62009-06-09 18:01:37 +0000664 assert( pzErrMsg!=0 );
drh75897232000-05-29 14:26:00 +0000665 if( pParse->zErrMsg ){
drh19f81f62009-06-09 18:01:37 +0000666 *pzErrMsg = pParse->zErrMsg;
drh875ad8c2018-06-21 23:53:54 +0000667 sqlite3_log(pParse->rc, "%s in \"%s\"",
668 *pzErrMsg, pParse->zTail);
drhb86ccfb2003-01-28 23:13:10 +0000669 pParse->zErrMsg = 0;
drh4b2f9362008-01-22 23:37:09 +0000670 nErr++;
drh75897232000-05-29 14:26:00 +0000671 }
drh875ad8c2018-06-21 23:53:54 +0000672 pParse->zTail = zSql;
drh2958a4e2004-11-12 03:56:15 +0000673 if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){
danielk19774adee202004-05-08 08:23:19 +0000674 sqlite3VdbeDelete(pParse->pVdbe);
drh75897232000-05-29 14:26:00 +0000675 pParse->pVdbe = 0;
676 }
danielk1977c00da102006-01-07 13:21:04 +0000677#ifndef SQLITE_OMIT_SHARED_CACHE
678 if( pParse->nested==0 ){
drh633e6d52008-07-28 19:34:53 +0000679 sqlite3DbFree(db, pParse->aTableLock);
danielk1977c00da102006-01-07 13:21:04 +0000680 pParse->aTableLock = 0;
681 pParse->nTableLock = 0;
682 }
683#endif
drh4f3dd152008-04-28 18:46:43 +0000684#ifndef SQLITE_OMIT_VIRTUALTABLE
drhb9755982010-07-24 16:34:37 +0000685 sqlite3_free(pParse->apVtabLock);
drh4f3dd152008-04-28 18:46:43 +0000686#endif
danielk19777e6ebfb2006-06-12 11:24:37 +0000687
danielk19777e6ebfb2006-06-12 11:24:37 +0000688 if( !IN_DECLARE_VTAB ){
689 /* If the pParse->declareVtab flag is set, do not delete any table
690 ** structure built up in pParse->pNewTable. The calling code (see vtab.c)
691 ** will take responsibility for freeing the Table structure.
692 */
dan1feeaed2010-07-23 15:41:47 +0000693 sqlite3DeleteTable(db, pParse->pNewTable);
danielk19777e6ebfb2006-06-12 11:24:37 +0000694 }
695
drhf3c57ff2016-04-12 00:16:54 +0000696 if( pParse->pWithToFree ) sqlite3WithDelete(db, pParse->pWithToFree);
drh633e6d52008-07-28 19:34:53 +0000697 sqlite3DeleteTrigger(db, pParse->pNewTrigger);
drh9bf755c2016-12-23 03:59:31 +0000698 sqlite3DbFree(db, pParse->pVList);
drh0b9f50d2009-06-23 20:28:53 +0000699 while( pParse->pAinc ){
700 AutoincInfo *p = pParse->pAinc;
701 pParse->pAinc = p->pNext;
drhdbd6a7d2017-04-05 12:39:49 +0000702 sqlite3DbFreeNN(db, p);
drh0b9f50d2009-06-23 20:28:53 +0000703 }
drh588a9a12008-09-01 15:52:10 +0000704 while( pParse->pZombieTab ){
705 Table *p = pParse->pZombieTab;
706 pParse->pZombieTab = p->pNextZombie;
dan1feeaed2010-07-23 15:41:47 +0000707 sqlite3DeleteTable(db, p);
drh588a9a12008-09-01 15:52:10 +0000708 }
drhf3151f02015-04-16 20:27:09 +0000709 assert( nErr==0 || pParse->rc!=SQLITE_OK );
drh75897232000-05-29 14:26:00 +0000710 return nErr;
711}