blob: 256f9661dc525b708f2f249bf6bc21d0170bba97 [file] [log] [blame]
drh348784e2000-05-29 20:41:49 +00001/*
drhb19a2bc2001-09-16 00:13:26 +00002** 2001 September 15
drh348784e2000-05-29 20:41:49 +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:
drh348784e2000-05-29 20:41:49 +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.
drh348784e2000-05-29 20:41:49 +000010**
11*************************************************************************
12** This file contains SQLite's grammar for SQL. Process this file
13** using the lemon parser generator to generate C code that runs
14** the parser. Lemon will also generate a header file containing
15** numeric codes for all of the tokens.
16**
drhf7a9e1a2004-02-22 18:40:56 +000017** @(#) $Id: parse.y,v 1.112 2004/02/22 18:40:57 drh Exp $
drh348784e2000-05-29 20:41:49 +000018*/
19%token_prefix TK_
20%token_type {Token}
drhf57b14a2001-09-14 18:54:08 +000021%default_type {Token}
drh348784e2000-05-29 20:41:49 +000022%extra_argument {Parse *pParse}
23%syntax_error {
drhb86ccfb2003-01-28 23:13:10 +000024 if( pParse->zErrMsg==0 ){
25 if( TOKEN.z[0] ){
drhf7a9e1a2004-02-22 18:40:56 +000026 sqliteErrorMsg(pParse, "near \"%T\": syntax error", &TOKEN);
drhb86ccfb2003-01-28 23:13:10 +000027 }else{
drhf7a9e1a2004-02-22 18:40:56 +000028 sqliteErrorMsg(pParse, "incomplete SQL statement");
drhb86ccfb2003-01-28 23:13:10 +000029 }
30 }
drh348784e2000-05-29 20:41:49 +000031}
32%name sqliteParser
33%include {
34#include "sqliteInt.h"
35#include "parse.h"
drh9bbca4c2001-11-06 04:00:18 +000036
37/*
drhad3cab52002-05-24 02:04:32 +000038** An instance of this structure holds information about the
39** LIMIT clause of a SELECT statement.
drh9bbca4c2001-11-06 04:00:18 +000040*/
drhad3cab52002-05-24 02:04:32 +000041struct LimitVal {
42 int limit; /* The LIMIT value. -1 if there is no limit */
43 int offset; /* The OFFSET. 0 if there is none */
44};
danielk1977c3f9bad2002-05-15 08:30:12 +000045
46/*
drhad3cab52002-05-24 02:04:32 +000047** An instance of the following structure describes the event of a
48** TRIGGER. "a" is the event type, one of TK_UPDATE, TK_INSERT,
49** TK_DELETE, or TK_INSTEAD. If the event is of the form
50**
51** UPDATE ON (a,b,c)
52**
53** Then the "b" IdList records the list "a,b,c".
danielk1977c3f9bad2002-05-15 08:30:12 +000054*/
drhad3cab52002-05-24 02:04:32 +000055struct TrigEvent { int a; IdList * b; };
drhcaec2f12003-01-07 02:47:47 +000056
57} // end %include
drh348784e2000-05-29 20:41:49 +000058
drh348784e2000-05-29 20:41:49 +000059// These are extra tokens used by the lexer but never seen by the
60// parser. We put them in a rule so that the parser generator will
drh6206d502000-06-19 19:09:08 +000061// add them to the parse.h output file.
drh348784e2000-05-29 20:41:49 +000062//
drhc4a3c772001-04-04 11:48:57 +000063%nonassoc END_OF_FILE ILLEGAL SPACE UNCLOSED_STRING COMMENT FUNCTION
64 COLUMN AGG_FUNCTION.
65
drh826fb5a2004-02-14 23:59:57 +000066// Input is a single SQL command
drhc4a3c772001-04-04 11:48:57 +000067input ::= cmdlist.
drh094b2bb2002-03-13 18:54:07 +000068cmdlist ::= cmdlist ecmd.
drh826fb5a2004-02-14 23:59:57 +000069cmdlist ::= ecmd.
drh483750b2003-01-29 18:46:51 +000070ecmd ::= explain cmdx SEMI.
drh094b2bb2002-03-13 18:54:07 +000071ecmd ::= SEMI.
drh483750b2003-01-29 18:46:51 +000072cmdx ::= cmd. { sqliteExec(pParse); }
drhe0bc4042002-06-25 01:09:11 +000073explain ::= EXPLAIN. { sqliteBeginParse(pParse, 1); }
74explain ::= . { sqliteBeginParse(pParse, 0); }
drh348784e2000-05-29 20:41:49 +000075
drh382c0242001-10-06 16:33:02 +000076///////////////////// Begin and end transactions. ////////////////////////////
drhc4a3c772001-04-04 11:48:57 +000077//
drhfa86c412002-02-02 15:01:15 +000078
drh0d65dc02002-02-03 00:56:09 +000079cmd ::= BEGIN trans_opt onconf(R). {sqliteBeginTransaction(pParse,R);}
drhc4a3c772001-04-04 11:48:57 +000080trans_opt ::= .
81trans_opt ::= TRANSACTION.
drh5ad1a6c2002-07-01 12:27:09 +000082trans_opt ::= TRANSACTION nm.
drhc4a3c772001-04-04 11:48:57 +000083cmd ::= COMMIT trans_opt. {sqliteCommitTransaction(pParse);}
84cmd ::= END trans_opt. {sqliteCommitTransaction(pParse);}
85cmd ::= ROLLBACK trans_opt. {sqliteRollbackTransaction(pParse);}
86
drh382c0242001-10-06 16:33:02 +000087///////////////////// The CREATE TABLE statement ////////////////////////////
drh348784e2000-05-29 20:41:49 +000088//
89cmd ::= create_table create_table_args.
drh5ad1a6c2002-07-01 12:27:09 +000090create_table ::= CREATE(X) temp(T) TABLE nm(Y). {
drhe5f9c642003-01-13 23:27:31 +000091 sqliteStartTable(pParse,&X,&Y,T,0);
drh969fa7c2002-02-18 18:30:32 +000092}
drhf57b3392001-10-08 13:22:32 +000093%type temp {int}
drhd24cc422003-03-27 12:51:24 +000094temp(A) ::= TEMP. {A = 1;}
95temp(A) ::= . {A = 0;}
drh969fa7c2002-02-18 18:30:32 +000096create_table_args ::= LP columnlist conslist_opt RP(X). {
97 sqliteEndTable(pParse,&X,0);
98}
99create_table_args ::= AS select(S). {
100 sqliteEndTable(pParse,0,S);
101 sqliteSelectDelete(S);
102}
drh348784e2000-05-29 20:41:49 +0000103columnlist ::= columnlist COMMA column.
104columnlist ::= column.
105
106// About the only information used for a column is the name of the
107// column. The type is always just "text". But the code will accept
108// an elaborate typename. Perhaps someday we'll do something with it.
109//
110column ::= columnid type carglist.
drh5ad1a6c2002-07-01 12:27:09 +0000111columnid ::= nm(X). {sqliteAddColumn(pParse,&X);}
drhc4a3c772001-04-04 11:48:57 +0000112
113// An IDENTIFIER can be a generic identifier, or one of several
114// keywords. Any non-standard keyword can also be an identifier.
drhc4a3c772001-04-04 11:48:57 +0000115//
drh982cef72000-05-30 16:27:03 +0000116%type id {Token}
drhf18543c2002-03-30 15:26:50 +0000117id(A) ::= ID(X). {A = X;}
drh0bd1f4e2002-06-06 18:54:39 +0000118
drh34e33bb2002-06-06 19:04:16 +0000119// The following directive causes tokens ABORT, AFTER, ASC, etc. to
120// fallback to ID if they will not parse as their original value.
121// This obviates the need for the "id" nonterminal.
122//
drh319e4e72003-09-30 01:54:13 +0000123%fallback ID
drh113088e2003-03-20 01:16:58 +0000124 ABORT AFTER ASC ATTACH BEFORE BEGIN CASCADE CLUSTER CONFLICT
125 COPY DATABASE DEFERRED DELIMITERS DESC DETACH EACH END EXPLAIN FAIL FOR
drh319e4e72003-09-30 01:54:13 +0000126 GLOB IGNORE IMMEDIATE INITIALLY INSTEAD LIKE MATCH KEY
drh5ad1a6c2002-07-01 12:27:09 +0000127 OF OFFSET PRAGMA RAISE REPLACE RESTRICT ROW STATEMENT
drh0bd1f4e2002-06-06 18:54:39 +0000128 TEMP TRIGGER VACUUM VIEW.
drhc4a3c772001-04-04 11:48:57 +0000129
drh2d3917d2004-02-22 16:27:00 +0000130// Define operator precedence early so that this is the first occurance
131// of the operator tokens in the grammer. Keeping the operators together
132// causes them to be assigned integer values that are close together,
133// which keeps parser tables smaller.
134//
135%left OR.
136%left AND.
137%right NOT.
138%left EQ NE ISNULL NOTNULL IS LIKE GLOB BETWEEN IN.
139%left GT GE LT LE.
140%left BITAND BITOR LSHIFT RSHIFT.
141%left PLUS MINUS.
142%left STAR SLASH REM.
143%left CONCAT.
144%right UMINUS UPLUS BITNOT.
145
drhc4a3c772001-04-04 11:48:57 +0000146// And "ids" is an identifer-or-string.
147//
148%type ids {Token}
drh5ad1a6c2002-07-01 12:27:09 +0000149ids(A) ::= ID(X). {A = X;}
drhc4a3c772001-04-04 11:48:57 +0000150ids(A) ::= STRING(X). {A = X;}
151
drh5ad1a6c2002-07-01 12:27:09 +0000152// The name of a column or table can be any of the following:
153//
154%type nm {Token}
155nm(A) ::= ID(X). {A = X;}
156nm(A) ::= STRING(X). {A = X;}
157nm(A) ::= JOIN_KW(X). {A = X;}
158
drh382c0242001-10-06 16:33:02 +0000159type ::= .
160type ::= typename(X). {sqliteAddColumnType(pParse,&X,&X);}
161type ::= typename(X) LP signed RP(Y). {sqliteAddColumnType(pParse,&X,&Y);}
162type ::= typename(X) LP signed COMMA signed RP(Y).
163 {sqliteAddColumnType(pParse,&X,&Y);}
164%type typename {Token}
165typename(A) ::= ids(X). {A = X;}
166typename(A) ::= typename(X) ids. {A = X;}
drhef0cae52003-07-16 02:19:37 +0000167%type signed {int}
168signed(A) ::= INTEGER(X). { A = atoi(X.z); }
169signed(A) ::= PLUS INTEGER(X). { A = atoi(X.z); }
170signed(A) ::= MINUS INTEGER(X). { A = -atoi(X.z); }
drh348784e2000-05-29 20:41:49 +0000171carglist ::= carglist carg.
172carglist ::= .
drh5ad1a6c2002-07-01 12:27:09 +0000173carg ::= CONSTRAINT nm ccons.
drh348784e2000-05-29 20:41:49 +0000174carg ::= ccons.
drh7020f652000-06-03 18:06:52 +0000175carg ::= DEFAULT STRING(X). {sqliteAddDefaultValue(pParse,&X,0);}
176carg ::= DEFAULT ID(X). {sqliteAddDefaultValue(pParse,&X,0);}
177carg ::= DEFAULT INTEGER(X). {sqliteAddDefaultValue(pParse,&X,0);}
178carg ::= DEFAULT PLUS INTEGER(X). {sqliteAddDefaultValue(pParse,&X,0);}
179carg ::= DEFAULT MINUS INTEGER(X). {sqliteAddDefaultValue(pParse,&X,1);}
180carg ::= DEFAULT FLOAT(X). {sqliteAddDefaultValue(pParse,&X,0);}
181carg ::= DEFAULT PLUS FLOAT(X). {sqliteAddDefaultValue(pParse,&X,0);}
182carg ::= DEFAULT MINUS FLOAT(X). {sqliteAddDefaultValue(pParse,&X,1);}
183carg ::= DEFAULT NULL.
drh348784e2000-05-29 20:41:49 +0000184
drh382c0242001-10-06 16:33:02 +0000185// In addition to the type name, we also care about the primary key and
186// UNIQUE constraints.
drh348784e2000-05-29 20:41:49 +0000187//
drh0d316a42002-08-11 20:10:47 +0000188ccons ::= NULL onconf.
drh9cfcf5d2002-01-29 18:41:24 +0000189ccons ::= NOT NULL onconf(R). {sqliteAddNotNull(pParse, R);}
190ccons ::= PRIMARY KEY sortorder onconf(R). {sqliteAddPrimaryKey(pParse,0,R);}
drh4925ca02003-11-27 00:48:57 +0000191ccons ::= UNIQUE onconf(R). {sqliteCreateIndex(pParse,0,0,0,R,0,0);}
drh9cfcf5d2002-01-29 18:41:24 +0000192ccons ::= CHECK LP expr RP onconf.
drhc2eef3b2002-08-31 18:53:06 +0000193ccons ::= REFERENCES nm(T) idxlist_opt(TA) refargs(R).
194 {sqliteCreateForeignKey(pParse,0,&T,TA,R);}
195ccons ::= defer_subclause(D). {sqliteDeferForeignKey(pParse,D);}
drh8e2ca022002-06-17 17:07:19 +0000196ccons ::= COLLATE id(C). {
drhfcb78a42003-01-18 20:11:05 +0000197 sqliteAddCollateType(pParse, sqliteCollateType(C.z, C.n));
drh8e2ca022002-06-17 17:07:19 +0000198}
drh04738cb2002-06-02 18:19:00 +0000199
drhc2eef3b2002-08-31 18:53:06 +0000200// The next group of rules parses the arguments to a REFERENCES clause
201// that determine if the referential integrity checking is deferred or
202// or immediate and which determine what action to take if a ref-integ
203// check fails.
drh04738cb2002-06-02 18:19:00 +0000204//
drhc2eef3b2002-08-31 18:53:06 +0000205%type refargs {int}
206refargs(A) ::= . { A = OE_Restrict * 0x010101; }
207refargs(A) ::= refargs(X) refarg(Y). { A = (X & Y.mask) | Y.value; }
208%type refarg {struct {int value; int mask;}}
209refarg(A) ::= MATCH nm. { A.value = 0; A.mask = 0x000000; }
210refarg(A) ::= ON DELETE refact(X). { A.value = X; A.mask = 0x0000ff; }
211refarg(A) ::= ON UPDATE refact(X). { A.value = X<<8; A.mask = 0x00ff00; }
212refarg(A) ::= ON INSERT refact(X). { A.value = X<<16; A.mask = 0xff0000; }
213%type refact {int}
214refact(A) ::= SET NULL. { A = OE_SetNull; }
215refact(A) ::= SET DEFAULT. { A = OE_SetDflt; }
216refact(A) ::= CASCADE. { A = OE_Cascade; }
217refact(A) ::= RESTRICT. { A = OE_Restrict; }
218%type defer_subclause {int}
219defer_subclause(A) ::= NOT DEFERRABLE init_deferred_pred_opt(X). {A = X;}
220defer_subclause(A) ::= DEFERRABLE init_deferred_pred_opt(X). {A = X;}
221%type init_deferred_pred_opt {int}
222init_deferred_pred_opt(A) ::= . {A = 0;}
223init_deferred_pred_opt(A) ::= INITIALLY DEFERRED. {A = 1;}
224init_deferred_pred_opt(A) ::= INITIALLY IMMEDIATE. {A = 0;}
drh348784e2000-05-29 20:41:49 +0000225
226// For the time being, the only constraint we care about is the primary
drh382c0242001-10-06 16:33:02 +0000227// key and UNIQUE. Both create indices.
drh348784e2000-05-29 20:41:49 +0000228//
229conslist_opt ::= .
230conslist_opt ::= COMMA conslist.
231conslist ::= conslist COMMA tcons.
drha2e1bb52001-01-04 14:20:18 +0000232conslist ::= conslist tcons.
drh348784e2000-05-29 20:41:49 +0000233conslist ::= tcons.
drh5ad1a6c2002-07-01 12:27:09 +0000234tcons ::= CONSTRAINT nm.
drh9cfcf5d2002-01-29 18:41:24 +0000235tcons ::= PRIMARY KEY LP idxlist(X) RP onconf(R).
236 {sqliteAddPrimaryKey(pParse,X,R);}
237tcons ::= UNIQUE LP idxlist(X) RP onconf(R).
drh4925ca02003-11-27 00:48:57 +0000238 {sqliteCreateIndex(pParse,0,0,X,R,0,0);}
drh9cfcf5d2002-01-29 18:41:24 +0000239tcons ::= CHECK expr onconf.
drhc2eef3b2002-08-31 18:53:06 +0000240tcons ::= FOREIGN KEY LP idxlist(FA) RP
241 REFERENCES nm(T) idxlist_opt(TA) refargs(R) defer_subclause_opt(D). {
242 sqliteCreateForeignKey(pParse, FA, &T, TA, R);
243 sqliteDeferForeignKey(pParse, D);
244}
245%type defer_subclause_opt {int}
246defer_subclause_opt(A) ::= . {A = 0;}
247defer_subclause_opt(A) ::= defer_subclause(X). {A = X;}
drh9cfcf5d2002-01-29 18:41:24 +0000248
249// The following is a non-standard extension that allows us to declare the
250// default behavior when there is a constraint conflict.
251//
252%type onconf {int}
drh1c928532002-01-31 15:54:21 +0000253%type orconf {int}
254%type resolvetype {int}
255onconf(A) ::= . { A = OE_Default; }
256onconf(A) ::= ON CONFLICT resolvetype(X). { A = X; }
257orconf(A) ::= . { A = OE_Default; }
258orconf(A) ::= OR resolvetype(X). { A = X; }
259resolvetype(A) ::= ROLLBACK. { A = OE_Rollback; }
260resolvetype(A) ::= ABORT. { A = OE_Abort; }
261resolvetype(A) ::= FAIL. { A = OE_Fail; }
262resolvetype(A) ::= IGNORE. { A = OE_Ignore; }
263resolvetype(A) ::= REPLACE. { A = OE_Replace; }
drh348784e2000-05-29 20:41:49 +0000264
drh382c0242001-10-06 16:33:02 +0000265////////////////////////// The DROP TABLE /////////////////////////////////////
drh348784e2000-05-29 20:41:49 +0000266//
drh5ad1a6c2002-07-01 12:27:09 +0000267cmd ::= DROP TABLE nm(X). {sqliteDropTable(pParse,&X,0);}
drh348784e2000-05-29 20:41:49 +0000268
drha76b5df2002-02-23 02:32:10 +0000269///////////////////// The CREATE VIEW statement /////////////////////////////
270//
drh6276c1c2002-07-08 22:03:32 +0000271cmd ::= CREATE(X) temp(T) VIEW nm(Y) AS select(S). {
272 sqliteCreateView(pParse, &X, &Y, S, T);
drha76b5df2002-02-23 02:32:10 +0000273}
drh5ad1a6c2002-07-01 12:27:09 +0000274cmd ::= DROP VIEW nm(X). {
drh4ff6dfa2002-03-03 23:06:00 +0000275 sqliteDropTable(pParse, &X, 1);
drha76b5df2002-02-23 02:32:10 +0000276}
277
drh382c0242001-10-06 16:33:02 +0000278//////////////////////// The SELECT statement /////////////////////////////////
drh348784e2000-05-29 20:41:49 +0000279//
drh9bb61fe2000-06-05 16:01:39 +0000280cmd ::= select(X). {
drh832508b2002-03-02 17:04:07 +0000281 sqliteSelect(pParse, X, SRT_Callback, 0, 0, 0, 0);
drh9bb61fe2000-06-05 16:01:39 +0000282 sqliteSelectDelete(X);
283}
drhefb72512000-05-31 20:00:52 +0000284
drh9bb61fe2000-06-05 16:01:39 +0000285%type select {Select*}
286%destructor select {sqliteSelectDelete($$);}
drh82c3d632000-06-06 21:56:07 +0000287%type oneselect {Select*}
288%destructor oneselect {sqliteSelectDelete($$);}
drh9bb61fe2000-06-05 16:01:39 +0000289
drh82c3d632000-06-06 21:56:07 +0000290select(A) ::= oneselect(X). {A = X;}
drh0a36c572002-02-18 22:49:59 +0000291select(A) ::= select(X) multiselect_op(Y) oneselect(Z). {
drhdaffd0e2001-04-11 14:28:42 +0000292 if( Z ){
drh82c3d632000-06-06 21:56:07 +0000293 Z->op = Y;
294 Z->pPrior = X;
drhdaffd0e2001-04-11 14:28:42 +0000295 }
296 A = Z;
drh82c3d632000-06-06 21:56:07 +0000297}
drh0a36c572002-02-18 22:49:59 +0000298%type multiselect_op {int}
299multiselect_op(A) ::= UNION. {A = TK_UNION;}
300multiselect_op(A) ::= UNION ALL. {A = TK_ALL;}
301multiselect_op(A) ::= INTERSECT. {A = TK_INTERSECT;}
302multiselect_op(A) ::= EXCEPT. {A = TK_EXCEPT;}
drh82c3d632000-06-06 21:56:07 +0000303oneselect(A) ::= SELECT distinct(D) selcollist(W) from(X) where_opt(Y)
drh9bbca4c2001-11-06 04:00:18 +0000304 groupby_opt(P) having_opt(Q) orderby_opt(Z) limit_opt(L). {
drhad3cab52002-05-24 02:04:32 +0000305 A = sqliteSelectNew(W,X,Y,P,Q,Z,D,L.limit,L.offset);
drh9bb61fe2000-06-05 16:01:39 +0000306}
307
308// The "distinct" nonterminal is true (1) if the DISTINCT keyword is
309// present and false (0) if it is not.
310//
drhefb72512000-05-31 20:00:52 +0000311%type distinct {int}
drhefb72512000-05-31 20:00:52 +0000312distinct(A) ::= DISTINCT. {A = 1;}
drhfef52082000-06-06 01:50:43 +0000313distinct(A) ::= ALL. {A = 0;}
drhefb72512000-05-31 20:00:52 +0000314distinct(A) ::= . {A = 0;}
drh348784e2000-05-29 20:41:49 +0000315
drh9bb61fe2000-06-05 16:01:39 +0000316// selcollist is a list of expressions that are to become the return
drh7c917d12001-12-16 20:05:05 +0000317// values of the SELECT statement. The "*" in statements like
318// "SELECT * FROM ..." is encoded as a special expression with an
319// opcode of TK_ALL.
drh9bb61fe2000-06-05 16:01:39 +0000320//
drh348784e2000-05-29 20:41:49 +0000321%type selcollist {ExprList*}
322%destructor selcollist {sqliteExprListDelete($$);}
323%type sclp {ExprList*}
324%destructor sclp {sqliteExprListDelete($$);}
drh348784e2000-05-29 20:41:49 +0000325sclp(A) ::= selcollist(X) COMMA. {A = X;}
326sclp(A) ::= . {A = 0;}
drh01f3f252002-05-24 16:14:15 +0000327selcollist(A) ::= sclp(P) expr(X) as(Y). {
328 A = sqliteExprListAppend(P,X,Y.n?&Y:0);
329}
drh7c917d12001-12-16 20:05:05 +0000330selcollist(A) ::= sclp(P) STAR. {
331 A = sqliteExprListAppend(P, sqliteExpr(TK_ALL, 0, 0, 0), 0);
332}
drh5ad1a6c2002-07-01 12:27:09 +0000333selcollist(A) ::= sclp(P) nm(X) DOT STAR. {
drh54473222002-04-04 02:10:55 +0000334 Expr *pRight = sqliteExpr(TK_ALL, 0, 0, 0);
335 Expr *pLeft = sqliteExpr(TK_ID, 0, 0, &X);
336 A = sqliteExprListAppend(P, sqliteExpr(TK_DOT, pLeft, pRight, 0), 0);
337}
drh01f3f252002-05-24 16:14:15 +0000338
339// An option "AS <id>" phrase that can follow one of the expressions that
340// define the result set, or one of the tables in the FROM clause.
341//
342%type as {Token}
drh5ad1a6c2002-07-01 12:27:09 +0000343as(X) ::= AS nm(Y). { X = Y; }
344as(X) ::= ids(Y). { X = Y; }
345as(X) ::= . { X.n = 0; }
drh9bb61fe2000-06-05 16:01:39 +0000346
drh348784e2000-05-29 20:41:49 +0000347
drhad3cab52002-05-24 02:04:32 +0000348%type seltablist {SrcList*}
349%destructor seltablist {sqliteSrcListDelete($$);}
350%type stl_prefix {SrcList*}
351%destructor stl_prefix {sqliteSrcListDelete($$);}
352%type from {SrcList*}
353%destructor from {sqliteSrcListDelete($$);}
drh348784e2000-05-29 20:41:49 +0000354
drh01f3f252002-05-24 16:14:15 +0000355// A complete FROM clause.
356//
drhbf3a4fa2002-04-06 13:57:42 +0000357from(A) ::= . {A = sqliteMalloc(sizeof(*A));}
drh348784e2000-05-29 20:41:49 +0000358from(A) ::= FROM seltablist(X). {A = X;}
drh01f3f252002-05-24 16:14:15 +0000359
360// "seltablist" is a "Select Table List" - the content of the FROM clause
361// in a SELECT statement. "stl_prefix" is a prefix of this list.
362//
363stl_prefix(A) ::= seltablist(X) joinop(Y). {
364 A = X;
365 if( A && A->nSrc>0 ) A->a[A->nSrc-1].jointype = Y;
366}
drh348784e2000-05-29 20:41:49 +0000367stl_prefix(A) ::= . {A = 0;}
drh113088e2003-03-20 01:16:58 +0000368seltablist(A) ::= stl_prefix(X) nm(Y) dbnm(D) as(Z) on_opt(N) using_opt(U). {
369 A = sqliteSrcListAppend(X,&Y,&D);
drh01f3f252002-05-24 16:14:15 +0000370 if( Z.n ) sqliteSrcListAddAlias(A,&Z);
371 if( N ){
372 if( A && A->nSrc>1 ){ A->a[A->nSrc-2].pOn = N; }
373 else { sqliteExprDelete(N); }
374 }
375 if( U ){
376 if( A && A->nSrc>1 ){ A->a[A->nSrc-2].pUsing = U; }
377 else { sqliteIdListDelete(U); }
378 }
drhc4a3c772001-04-04 11:48:57 +0000379}
drhb733d032004-01-24 20:18:12 +0000380seltablist(A) ::= stl_prefix(X) LP seltablist_paren(S) RP
381 as(Z) on_opt(N) using_opt(U). {
drh113088e2003-03-20 01:16:58 +0000382 A = sqliteSrcListAppend(X,0,0);
drhad3cab52002-05-24 02:04:32 +0000383 A->a[A->nSrc-1].pSelect = S;
drh01f3f252002-05-24 16:14:15 +0000384 if( Z.n ) sqliteSrcListAddAlias(A,&Z);
385 if( N ){
386 if( A && A->nSrc>1 ){ A->a[A->nSrc-2].pOn = N; }
387 else { sqliteExprDelete(N); }
drhd5feede2002-05-08 21:46:14 +0000388 }
drh01f3f252002-05-24 16:14:15 +0000389 if( U ){
390 if( A && A->nSrc>1 ){ A->a[A->nSrc-2].pUsing = U; }
391 else { sqliteIdListDelete(U); }
392 }
drh22f70c32002-02-18 01:17:00 +0000393}
drh348784e2000-05-29 20:41:49 +0000394
drhb733d032004-01-24 20:18:12 +0000395// A seltablist_paren nonterminal represents anything in a FROM that
396// is contained inside parentheses. This can be either a subquery or
397// a grouping of table and subqueries.
398//
399%type seltablist_paren {Select*}
400%destructor seltablist_paren {sqliteSelectDelete($$);}
401seltablist_paren(A) ::= select(S). {A = S;}
402seltablist_paren(A) ::= seltablist(F). {
403 A = sqliteSelectNew(0,F,0,0,0,0,0,-1,0);
404}
405
drh113088e2003-03-20 01:16:58 +0000406%type dbnm {Token}
407dbnm(A) ::= . {A.z=0; A.n=0;}
408dbnm(A) ::= DOT nm(X). {A = X;}
409
drh01f3f252002-05-24 16:14:15 +0000410%type joinop {int}
411%type joinop2 {int}
412joinop(X) ::= COMMA. { X = JT_INNER; }
413joinop(X) ::= JOIN. { X = JT_INNER; }
drh5ad1a6c2002-07-01 12:27:09 +0000414joinop(X) ::= JOIN_KW(A) JOIN. { X = sqliteJoinType(pParse,&A,0,0); }
415joinop(X) ::= JOIN_KW(A) nm(B) JOIN. { X = sqliteJoinType(pParse,&A,&B,0); }
416joinop(X) ::= JOIN_KW(A) nm(B) nm(C) JOIN.
417 { X = sqliteJoinType(pParse,&A,&B,&C); }
drh01f3f252002-05-24 16:14:15 +0000418
419%type on_opt {Expr*}
420%destructor on_opt {sqliteExprDelete($$);}
421on_opt(N) ::= ON expr(E). {N = E;}
422on_opt(N) ::= . {N = 0;}
423
424%type using_opt {IdList*}
425%destructor using_opt {sqliteIdListDelete($$);}
426using_opt(U) ::= USING LP idxlist(L) RP. {U = L;}
427using_opt(U) ::= . {U = 0;}
428
429
drh348784e2000-05-29 20:41:49 +0000430%type orderby_opt {ExprList*}
431%destructor orderby_opt {sqliteExprListDelete($$);}
432%type sortlist {ExprList*}
433%destructor sortlist {sqliteExprListDelete($$);}
434%type sortitem {Expr*}
435%destructor sortitem {sqliteExprDelete($$);}
436
437orderby_opt(A) ::= . {A = 0;}
438orderby_opt(A) ::= ORDER BY sortlist(X). {A = X;}
drh8e2ca022002-06-17 17:07:19 +0000439sortlist(A) ::= sortlist(X) COMMA sortitem(Y) collate(C) sortorder(Z). {
drh9bb61fe2000-06-05 16:01:39 +0000440 A = sqliteExprListAppend(X,Y,0);
drh8e2ca022002-06-17 17:07:19 +0000441 if( A ) A->a[A->nExpr-1].sortOrder = C+Z;
drh9bb61fe2000-06-05 16:01:39 +0000442}
drh38640e12002-07-05 21:42:36 +0000443sortlist(A) ::= sortitem(Y) collate(C) sortorder(Z). {
drh9bb61fe2000-06-05 16:01:39 +0000444 A = sqliteExprListAppend(0,Y,0);
drh38640e12002-07-05 21:42:36 +0000445 if( A ) A->a[0].sortOrder = C+Z;
drh9bb61fe2000-06-05 16:01:39 +0000446}
drhda9d6c42000-05-31 18:20:14 +0000447sortitem(A) ::= expr(X). {A = X;}
drh348784e2000-05-29 20:41:49 +0000448
449%type sortorder {int}
drh8e2ca022002-06-17 17:07:19 +0000450%type collate {int}
drh348784e2000-05-29 20:41:49 +0000451
drh8e2ca022002-06-17 17:07:19 +0000452sortorder(A) ::= ASC. {A = SQLITE_SO_ASC;}
453sortorder(A) ::= DESC. {A = SQLITE_SO_DESC;}
454sortorder(A) ::= . {A = SQLITE_SO_ASC;}
455collate(C) ::= . {C = SQLITE_SO_UNK;}
drhfcb78a42003-01-18 20:11:05 +0000456collate(C) ::= COLLATE id(X). {C = sqliteCollateType(X.z, X.n);}
drh348784e2000-05-29 20:41:49 +0000457
drh22827922000-06-06 17:27:05 +0000458%type groupby_opt {ExprList*}
459%destructor groupby_opt {sqliteExprListDelete($$);}
drh6206d502000-06-19 19:09:08 +0000460groupby_opt(A) ::= . {A = 0;}
drh22827922000-06-06 17:27:05 +0000461groupby_opt(A) ::= GROUP BY exprlist(X). {A = X;}
462
463%type having_opt {Expr*}
464%destructor having_opt {sqliteExprDelete($$);}
drh6206d502000-06-19 19:09:08 +0000465having_opt(A) ::= . {A = 0;}
drh22827922000-06-06 17:27:05 +0000466having_opt(A) ::= HAVING expr(X). {A = X;}
467
drhad3cab52002-05-24 02:04:32 +0000468%type limit_opt {struct LimitVal}
drhef0cae52003-07-16 02:19:37 +0000469limit_opt(A) ::= . {A.limit = -1; A.offset = 0;}
470limit_opt(A) ::= LIMIT signed(X). {A.limit = X; A.offset = 0;}
471limit_opt(A) ::= LIMIT signed(X) OFFSET signed(Y).
472 {A.limit = X; A.offset = Y;}
473limit_opt(A) ::= LIMIT signed(X) COMMA signed(Y).
474 {A.limit = Y; A.offset = X;}
drh9bbca4c2001-11-06 04:00:18 +0000475
drh382c0242001-10-06 16:33:02 +0000476/////////////////////////// The DELETE statement /////////////////////////////
477//
drh113088e2003-03-20 01:16:58 +0000478cmd ::= DELETE FROM nm(X) dbnm(D) where_opt(Y). {
479 sqliteDeleteFrom(pParse, sqliteSrcListAppend(0,&X,&D), Y);
480}
drh348784e2000-05-29 20:41:49 +0000481
482%type where_opt {Expr*}
483%destructor where_opt {sqliteExprDelete($$);}
484
485where_opt(A) ::= . {A = 0;}
486where_opt(A) ::= WHERE expr(X). {A = X;}
487
488%type setlist {ExprList*}
489%destructor setlist {sqliteExprListDelete($$);}
490
drh382c0242001-10-06 16:33:02 +0000491////////////////////////// The UPDATE command ////////////////////////////////
492//
drh113088e2003-03-20 01:16:58 +0000493cmd ::= UPDATE orconf(R) nm(X) dbnm(D) SET setlist(Y) where_opt(Z).
494 {sqliteUpdate(pParse,sqliteSrcListAppend(0,&X,&D),Y,Z,R);}
drh348784e2000-05-29 20:41:49 +0000495
drh5ad1a6c2002-07-01 12:27:09 +0000496setlist(A) ::= setlist(Z) COMMA nm(X) EQ expr(Y).
drh348784e2000-05-29 20:41:49 +0000497 {A = sqliteExprListAppend(Z,Y,&X);}
drh5ad1a6c2002-07-01 12:27:09 +0000498setlist(A) ::= nm(X) EQ expr(Y). {A = sqliteExprListAppend(0,Y,&X);}
drh348784e2000-05-29 20:41:49 +0000499
drh382c0242001-10-06 16:33:02 +0000500////////////////////////// The INSERT command /////////////////////////////////
501//
drh113088e2003-03-20 01:16:58 +0000502cmd ::= insert_cmd(R) INTO nm(X) dbnm(D) inscollist_opt(F)
503 VALUES LP itemlist(Y) RP.
504 {sqliteInsert(pParse, sqliteSrcListAppend(0,&X,&D), Y, 0, F, R);}
505cmd ::= insert_cmd(R) INTO nm(X) dbnm(D) inscollist_opt(F) select(S).
506 {sqliteInsert(pParse, sqliteSrcListAppend(0,&X,&D), 0, S, F, R);}
drh348784e2000-05-29 20:41:49 +0000507
drhfa86c412002-02-02 15:01:15 +0000508%type insert_cmd {int}
509insert_cmd(A) ::= INSERT orconf(R). {A = R;}
510insert_cmd(A) ::= REPLACE. {A = OE_Replace;}
511
drh348784e2000-05-29 20:41:49 +0000512
513%type itemlist {ExprList*}
514%destructor itemlist {sqliteExprListDelete($$);}
drh348784e2000-05-29 20:41:49 +0000515
drhe64e7b22002-02-18 13:56:36 +0000516itemlist(A) ::= itemlist(X) COMMA expr(Y). {A = sqliteExprListAppend(X,Y,0);}
517itemlist(A) ::= expr(X). {A = sqliteExprListAppend(0,X,0);}
drh348784e2000-05-29 20:41:49 +0000518
drh967e8b72000-06-21 13:59:10 +0000519%type inscollist_opt {IdList*}
520%destructor inscollist_opt {sqliteIdListDelete($$);}
521%type inscollist {IdList*}
522%destructor inscollist {sqliteIdListDelete($$);}
drh348784e2000-05-29 20:41:49 +0000523
drhc4a3c772001-04-04 11:48:57 +0000524inscollist_opt(A) ::= . {A = 0;}
525inscollist_opt(A) ::= LP inscollist(X) RP. {A = X;}
drh5ad1a6c2002-07-01 12:27:09 +0000526inscollist(A) ::= inscollist(X) COMMA nm(Y). {A = sqliteIdListAppend(X,&Y);}
527inscollist(A) ::= nm(Y). {A = sqliteIdListAppend(0,&Y);}
drh348784e2000-05-29 20:41:49 +0000528
drh382c0242001-10-06 16:33:02 +0000529/////////////////////////// Expression Processing /////////////////////////////
530//
drh348784e2000-05-29 20:41:49 +0000531
532%type expr {Expr*}
533%destructor expr {sqliteExprDelete($$);}
534
drh6977fea2002-10-22 23:38:04 +0000535expr(A) ::= LP(B) expr(X) RP(E). {A = X; sqliteExprSpan(A,&B,&E); }
drhe1b6a5b2000-07-29 13:06:59 +0000536expr(A) ::= NULL(X). {A = sqliteExpr(TK_NULL, 0, 0, &X);}
drh5ad1a6c2002-07-01 12:27:09 +0000537expr(A) ::= ID(X). {A = sqliteExpr(TK_ID, 0, 0, &X);}
538expr(A) ::= JOIN_KW(X). {A = sqliteExpr(TK_ID, 0, 0, &X);}
539expr(A) ::= nm(X) DOT nm(Y). {
drhe1b6a5b2000-07-29 13:06:59 +0000540 Expr *temp1 = sqliteExpr(TK_ID, 0, 0, &X);
541 Expr *temp2 = sqliteExpr(TK_ID, 0, 0, &Y);
542 A = sqliteExpr(TK_DOT, temp1, temp2, 0);
543}
drhd24cc422003-03-27 12:51:24 +0000544expr(A) ::= nm(X) DOT nm(Y) DOT nm(Z). {
545 Expr *temp1 = sqliteExpr(TK_ID, 0, 0, &X);
546 Expr *temp2 = sqliteExpr(TK_ID, 0, 0, &Y);
547 Expr *temp3 = sqliteExpr(TK_ID, 0, 0, &Z);
548 Expr *temp4 = sqliteExpr(TK_DOT, temp2, temp3, 0);
549 A = sqliteExpr(TK_DOT, temp1, temp4, 0);
550}
drh348784e2000-05-29 20:41:49 +0000551expr(A) ::= INTEGER(X). {A = sqliteExpr(TK_INTEGER, 0, 0, &X);}
552expr(A) ::= FLOAT(X). {A = sqliteExpr(TK_FLOAT, 0, 0, &X);}
553expr(A) ::= STRING(X). {A = sqliteExpr(TK_STRING, 0, 0, &X);}
drh7c972de2003-09-06 22:18:07 +0000554expr(A) ::= VARIABLE(X). {
555 A = sqliteExpr(TK_VARIABLE, 0, 0, &X);
556 if( A ) A->iTable = ++pParse->nVar;
557}
drhe1b6a5b2000-07-29 13:06:59 +0000558expr(A) ::= ID(X) LP exprlist(Y) RP(E). {
559 A = sqliteExprFunction(Y, &X);
560 sqliteExprSpan(A,&X,&E);
561}
562expr(A) ::= ID(X) LP STAR RP(E). {
563 A = sqliteExprFunction(0, &X);
564 sqliteExprSpan(A,&X,&E);
565}
drh348784e2000-05-29 20:41:49 +0000566expr(A) ::= expr(X) AND expr(Y). {A = sqliteExpr(TK_AND, X, Y, 0);}
567expr(A) ::= expr(X) OR expr(Y). {A = sqliteExpr(TK_OR, X, Y, 0);}
568expr(A) ::= expr(X) LT expr(Y). {A = sqliteExpr(TK_LT, X, Y, 0);}
569expr(A) ::= expr(X) GT expr(Y). {A = sqliteExpr(TK_GT, X, Y, 0);}
570expr(A) ::= expr(X) LE expr(Y). {A = sqliteExpr(TK_LE, X, Y, 0);}
571expr(A) ::= expr(X) GE expr(Y). {A = sqliteExpr(TK_GE, X, Y, 0);}
572expr(A) ::= expr(X) NE expr(Y). {A = sqliteExpr(TK_NE, X, Y, 0);}
573expr(A) ::= expr(X) EQ expr(Y). {A = sqliteExpr(TK_EQ, X, Y, 0);}
drh81a20f22001-10-12 17:30:04 +0000574expr(A) ::= expr(X) BITAND expr(Y). {A = sqliteExpr(TK_BITAND, X, Y, 0);}
575expr(A) ::= expr(X) BITOR expr(Y). {A = sqliteExpr(TK_BITOR, X, Y, 0);}
576expr(A) ::= expr(X) LSHIFT expr(Y). {A = sqliteExpr(TK_LSHIFT, X, Y, 0);}
577expr(A) ::= expr(X) RSHIFT expr(Y). {A = sqliteExpr(TK_RSHIFT, X, Y, 0);}
drh0ac65892002-04-20 14:24:41 +0000578expr(A) ::= expr(X) likeop(OP) expr(Y). [LIKE] {
579 ExprList *pList = sqliteExprListAppend(0, Y, 0);
580 pList = sqliteExprListAppend(pList, X, 0);
drh4b59ab52002-08-24 18:24:51 +0000581 A = sqliteExprFunction(pList, 0);
582 if( A ) A->op = OP;
drh6977fea2002-10-22 23:38:04 +0000583 sqliteExprSpan(A, &X->span, &Y->span);
drh0ac65892002-04-20 14:24:41 +0000584}
585expr(A) ::= expr(X) NOT likeop(OP) expr(Y). [LIKE] {
586 ExprList *pList = sqliteExprListAppend(0, Y, 0);
587 pList = sqliteExprListAppend(pList, X, 0);
drh4b59ab52002-08-24 18:24:51 +0000588 A = sqliteExprFunction(pList, 0);
589 if( A ) A->op = OP;
drh4794b982000-06-06 13:54:14 +0000590 A = sqliteExpr(TK_NOT, A, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000591 sqliteExprSpan(A,&X->span,&Y->span);
drh4794b982000-06-06 13:54:14 +0000592}
drh4b59ab52002-08-24 18:24:51 +0000593%type likeop {int}
594likeop(A) ::= LIKE. {A = TK_LIKE;}
595likeop(A) ::= GLOB. {A = TK_GLOB;}
drh348784e2000-05-29 20:41:49 +0000596expr(A) ::= expr(X) PLUS expr(Y). {A = sqliteExpr(TK_PLUS, X, Y, 0);}
597expr(A) ::= expr(X) MINUS expr(Y). {A = sqliteExpr(TK_MINUS, X, Y, 0);}
598expr(A) ::= expr(X) STAR expr(Y). {A = sqliteExpr(TK_STAR, X, Y, 0);}
599expr(A) ::= expr(X) SLASH expr(Y). {A = sqliteExpr(TK_SLASH, X, Y, 0);}
drhbf4133c2001-10-13 02:59:08 +0000600expr(A) ::= expr(X) REM expr(Y). {A = sqliteExpr(TK_REM, X, Y, 0);}
drh00400772000-06-16 20:51:26 +0000601expr(A) ::= expr(X) CONCAT expr(Y). {A = sqliteExpr(TK_CONCAT, X, Y, 0);}
drhe1b6a5b2000-07-29 13:06:59 +0000602expr(A) ::= expr(X) ISNULL(E). {
603 A = sqliteExpr(TK_ISNULL, X, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000604 sqliteExprSpan(A,&X->span,&E);
drhe1b6a5b2000-07-29 13:06:59 +0000605}
drh33048c02001-10-01 14:29:22 +0000606expr(A) ::= expr(X) IS NULL(E). {
607 A = sqliteExpr(TK_ISNULL, X, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000608 sqliteExprSpan(A,&X->span,&E);
drh33048c02001-10-01 14:29:22 +0000609}
drhe1b6a5b2000-07-29 13:06:59 +0000610expr(A) ::= expr(X) NOTNULL(E). {
611 A = sqliteExpr(TK_NOTNULL, X, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000612 sqliteExprSpan(A,&X->span,&E);
drhe1b6a5b2000-07-29 13:06:59 +0000613}
drh33048c02001-10-01 14:29:22 +0000614expr(A) ::= expr(X) NOT NULL(E). {
615 A = sqliteExpr(TK_NOTNULL, X, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000616 sqliteExprSpan(A,&X->span,&E);
drh33048c02001-10-01 14:29:22 +0000617}
drh81a20f22001-10-12 17:30:04 +0000618expr(A) ::= expr(X) IS NOT NULL(E). {
619 A = sqliteExpr(TK_NOTNULL, X, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000620 sqliteExprSpan(A,&X->span,&E);
drh81a20f22001-10-12 17:30:04 +0000621}
drhe1b6a5b2000-07-29 13:06:59 +0000622expr(A) ::= NOT(B) expr(X). {
623 A = sqliteExpr(TK_NOT, X, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000624 sqliteExprSpan(A,&B,&X->span);
drhe1b6a5b2000-07-29 13:06:59 +0000625}
drh81a20f22001-10-12 17:30:04 +0000626expr(A) ::= BITNOT(B) expr(X). {
627 A = sqliteExpr(TK_BITNOT, X, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000628 sqliteExprSpan(A,&B,&X->span);
drh81a20f22001-10-12 17:30:04 +0000629}
drhe1b6a5b2000-07-29 13:06:59 +0000630expr(A) ::= MINUS(B) expr(X). [UMINUS] {
631 A = sqliteExpr(TK_UMINUS, X, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000632 sqliteExprSpan(A,&B,&X->span);
drhe1b6a5b2000-07-29 13:06:59 +0000633}
drh4b59ab52002-08-24 18:24:51 +0000634expr(A) ::= PLUS(B) expr(X). [UPLUS] {
635 A = sqliteExpr(TK_UPLUS, X, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000636 sqliteExprSpan(A,&B,&X->span);
drhe1b6a5b2000-07-29 13:06:59 +0000637}
638expr(A) ::= LP(B) select(X) RP(E). {
drh19a775c2000-06-05 18:54:46 +0000639 A = sqliteExpr(TK_SELECT, 0, 0, 0);
drhdaffd0e2001-04-11 14:28:42 +0000640 if( A ) A->pSelect = X;
drhe1b6a5b2000-07-29 13:06:59 +0000641 sqliteExprSpan(A,&B,&E);
drh19a775c2000-06-05 18:54:46 +0000642}
drhfef52082000-06-06 01:50:43 +0000643expr(A) ::= expr(W) BETWEEN expr(X) AND expr(Y). {
644 ExprList *pList = sqliteExprListAppend(0, X, 0);
645 pList = sqliteExprListAppend(pList, Y, 0);
646 A = sqliteExpr(TK_BETWEEN, W, 0, 0);
drhdaffd0e2001-04-11 14:28:42 +0000647 if( A ) A->pList = pList;
drh6977fea2002-10-22 23:38:04 +0000648 sqliteExprSpan(A,&W->span,&Y->span);
drhfef52082000-06-06 01:50:43 +0000649}
drh4794b982000-06-06 13:54:14 +0000650expr(A) ::= expr(W) NOT BETWEEN expr(X) AND expr(Y). {
651 ExprList *pList = sqliteExprListAppend(0, X, 0);
652 pList = sqliteExprListAppend(pList, Y, 0);
653 A = sqliteExpr(TK_BETWEEN, W, 0, 0);
drhdaffd0e2001-04-11 14:28:42 +0000654 if( A ) A->pList = pList;
drh4794b982000-06-06 13:54:14 +0000655 A = sqliteExpr(TK_NOT, A, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000656 sqliteExprSpan(A,&W->span,&Y->span);
drh4794b982000-06-06 13:54:14 +0000657}
drhe1b6a5b2000-07-29 13:06:59 +0000658expr(A) ::= expr(X) IN LP exprlist(Y) RP(E). {
drhfef52082000-06-06 01:50:43 +0000659 A = sqliteExpr(TK_IN, X, 0, 0);
drhdaffd0e2001-04-11 14:28:42 +0000660 if( A ) A->pList = Y;
drh6977fea2002-10-22 23:38:04 +0000661 sqliteExprSpan(A,&X->span,&E);
drhfef52082000-06-06 01:50:43 +0000662}
drhe1b6a5b2000-07-29 13:06:59 +0000663expr(A) ::= expr(X) IN LP select(Y) RP(E). {
drhfef52082000-06-06 01:50:43 +0000664 A = sqliteExpr(TK_IN, X, 0, 0);
drhdaffd0e2001-04-11 14:28:42 +0000665 if( A ) A->pSelect = Y;
drh6977fea2002-10-22 23:38:04 +0000666 sqliteExprSpan(A,&X->span,&E);
drhfef52082000-06-06 01:50:43 +0000667}
drhe1b6a5b2000-07-29 13:06:59 +0000668expr(A) ::= expr(X) NOT IN LP exprlist(Y) RP(E). {
drh4794b982000-06-06 13:54:14 +0000669 A = sqliteExpr(TK_IN, X, 0, 0);
drhdaffd0e2001-04-11 14:28:42 +0000670 if( A ) A->pList = Y;
drh4794b982000-06-06 13:54:14 +0000671 A = sqliteExpr(TK_NOT, A, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000672 sqliteExprSpan(A,&X->span,&E);
drh4794b982000-06-06 13:54:14 +0000673}
drhe1b6a5b2000-07-29 13:06:59 +0000674expr(A) ::= expr(X) NOT IN LP select(Y) RP(E). {
drh4794b982000-06-06 13:54:14 +0000675 A = sqliteExpr(TK_IN, X, 0, 0);
drhdaffd0e2001-04-11 14:28:42 +0000676 if( A ) A->pSelect = Y;
drh4794b982000-06-06 13:54:14 +0000677 A = sqliteExpr(TK_NOT, A, 0, 0);
drh6977fea2002-10-22 23:38:04 +0000678 sqliteExprSpan(A,&X->span,&E);
drh4794b982000-06-06 13:54:14 +0000679}
drh23b2db22004-01-15 03:30:24 +0000680expr(A) ::= expr(X) IN nm(Y) dbnm(D). {
681 SrcList *pSrc = sqliteSrcListAppend(0, &Y, &D);
drh23b2db22004-01-15 03:30:24 +0000682 A = sqliteExpr(TK_IN, X, 0, 0);
drhb733d032004-01-24 20:18:12 +0000683 if( A ) A->pSelect = sqliteSelectNew(0,pSrc,0,0,0,0,0,-1,0);
drh23b2db22004-01-15 03:30:24 +0000684 sqliteExprSpan(A,&X->span,D.z?&D:&Y);
685}
686expr(A) ::= expr(X) NOT IN nm(Y) dbnm(D). {
687 SrcList *pSrc = sqliteSrcListAppend(0, &Y, &D);
drh23b2db22004-01-15 03:30:24 +0000688 A = sqliteExpr(TK_IN, X, 0, 0);
drhb733d032004-01-24 20:18:12 +0000689 if( A ) A->pSelect = sqliteSelectNew(0,pSrc,0,0,0,0,0,-1,0);
drh23b2db22004-01-15 03:30:24 +0000690 A = sqliteExpr(TK_NOT, A, 0, 0);
691 sqliteExprSpan(A,&X->span,D.z?&D:&Y);
692}
693
drhfef52082000-06-06 01:50:43 +0000694
drh17a7f8d2002-03-24 13:13:27 +0000695/* CASE expressions */
696expr(A) ::= CASE(C) case_operand(X) case_exprlist(Y) case_else(Z) END(E). {
697 A = sqliteExpr(TK_CASE, X, Z, 0);
698 if( A ) A->pList = Y;
699 sqliteExprSpan(A, &C, &E);
700}
701%type case_exprlist {ExprList*}
702%destructor case_exprlist {sqliteExprListDelete($$);}
703case_exprlist(A) ::= case_exprlist(X) WHEN expr(Y) THEN expr(Z). {
704 A = sqliteExprListAppend(X, Y, 0);
705 A = sqliteExprListAppend(A, Z, 0);
706}
707case_exprlist(A) ::= WHEN expr(Y) THEN expr(Z). {
708 A = sqliteExprListAppend(0, Y, 0);
709 A = sqliteExprListAppend(A, Z, 0);
710}
711%type case_else {Expr*}
712case_else(A) ::= ELSE expr(X). {A = X;}
713case_else(A) ::= . {A = 0;}
714%type case_operand {Expr*}
715case_operand(A) ::= expr(X). {A = X;}
716case_operand(A) ::= . {A = 0;}
drh348784e2000-05-29 20:41:49 +0000717
718%type exprlist {ExprList*}
719%destructor exprlist {sqliteExprListDelete($$);}
720%type expritem {Expr*}
721%destructor expritem {sqliteExprDelete($$);}
722
drh348784e2000-05-29 20:41:49 +0000723exprlist(A) ::= exprlist(X) COMMA expritem(Y).
724 {A = sqliteExprListAppend(X,Y,0);}
725exprlist(A) ::= expritem(X). {A = sqliteExprListAppend(0,X,0);}
726expritem(A) ::= expr(X). {A = X;}
727expritem(A) ::= . {A = 0;}
drhcce7d172000-05-31 15:34:51 +0000728
drh382c0242001-10-06 16:33:02 +0000729///////////////////////////// The CREATE INDEX command ///////////////////////
730//
drh4925ca02003-11-27 00:48:57 +0000731cmd ::= CREATE(S) uniqueflag(U) INDEX nm(X)
drhd24cc422003-03-27 12:51:24 +0000732 ON nm(Y) dbnm(D) LP idxlist(Z) RP(E) onconf(R). {
733 SrcList *pSrc = sqliteSrcListAppend(0, &Y, &D);
drh9cfcf5d2002-01-29 18:41:24 +0000734 if( U!=OE_None ) U = R;
735 if( U==OE_Default) U = OE_Abort;
drh4925ca02003-11-27 00:48:57 +0000736 sqliteCreateIndex(pParse, &X, pSrc, Z, U, &S, &E);
drh9cfcf5d2002-01-29 18:41:24 +0000737}
drh717e6402001-09-27 03:22:32 +0000738
739%type uniqueflag {int}
drh9cfcf5d2002-01-29 18:41:24 +0000740uniqueflag(A) ::= UNIQUE. { A = OE_Abort; }
741uniqueflag(A) ::= . { A = OE_None; }
drh348784e2000-05-29 20:41:49 +0000742
743%type idxlist {IdList*}
744%destructor idxlist {sqliteIdListDelete($$);}
drhc2eef3b2002-08-31 18:53:06 +0000745%type idxlist_opt {IdList*}
746%destructor idxlist_opt {sqliteIdListDelete($$);}
drh348784e2000-05-29 20:41:49 +0000747%type idxitem {Token}
748
drhc2eef3b2002-08-31 18:53:06 +0000749idxlist_opt(A) ::= . {A = 0;}
750idxlist_opt(A) ::= LP idxlist(X) RP. {A = X;}
751idxlist(A) ::= idxlist(X) COMMA idxitem(Y). {A = sqliteIdListAppend(X,&Y);}
752idxlist(A) ::= idxitem(Y). {A = sqliteIdListAppend(0,&Y);}
drh86e5cc02003-04-29 17:19:18 +0000753idxitem(A) ::= nm(X) sortorder. {A = X;}
drh348784e2000-05-29 20:41:49 +0000754
drh8aff1012001-12-22 14:49:24 +0000755///////////////////////////// The DROP INDEX command /////////////////////////
drh382c0242001-10-06 16:33:02 +0000756//
757
drhd24cc422003-03-27 12:51:24 +0000758cmd ::= DROP INDEX nm(X) dbnm(Y). {
759 sqliteDropIndex(pParse, sqliteSrcListAppend(0,&X,&Y));
760}
drh982cef72000-05-30 16:27:03 +0000761
drh382c0242001-10-06 16:33:02 +0000762
drh8aff1012001-12-22 14:49:24 +0000763///////////////////////////// The COPY command ///////////////////////////////
drh382c0242001-10-06 16:33:02 +0000764//
drhd24cc422003-03-27 12:51:24 +0000765cmd ::= COPY orconf(R) nm(X) dbnm(D) FROM nm(Y) USING DELIMITERS STRING(Z).
766 {sqliteCopy(pParse,sqliteSrcListAppend(0,&X,&D),&Y,&Z,R);}
767cmd ::= COPY orconf(R) nm(X) dbnm(D) FROM nm(Y).
768 {sqliteCopy(pParse,sqliteSrcListAppend(0,&X,&D),&Y,0,R);}
drhdce2cbe2000-05-31 02:27:49 +0000769
drh382c0242001-10-06 16:33:02 +0000770///////////////////////////// The VACUUM command /////////////////////////////
771//
drhdce2cbe2000-05-31 02:27:49 +0000772cmd ::= VACUUM. {sqliteVacuum(pParse,0);}
drh5ad1a6c2002-07-01 12:27:09 +0000773cmd ::= VACUUM nm(X). {sqliteVacuum(pParse,&X);}
drhf57b14a2001-09-14 18:54:08 +0000774
drh382c0242001-10-06 16:33:02 +0000775///////////////////////////// The PRAGMA command /////////////////////////////
776//
drh5ad1a6c2002-07-01 12:27:09 +0000777cmd ::= PRAGMA ids(X) EQ nm(Y). {sqlitePragma(pParse,&X,&Y,0);}
drhf57b14a2001-09-14 18:54:08 +0000778cmd ::= PRAGMA ids(X) EQ ON(Y). {sqlitePragma(pParse,&X,&Y,0);}
779cmd ::= PRAGMA ids(X) EQ plus_num(Y). {sqlitePragma(pParse,&X,&Y,0);}
780cmd ::= PRAGMA ids(X) EQ minus_num(Y). {sqlitePragma(pParse,&X,&Y,1);}
drh5ad1a6c2002-07-01 12:27:09 +0000781cmd ::= PRAGMA ids(X) LP nm(Y) RP. {sqlitePragma(pParse,&X,&Y,0);}
drh603240c2002-03-05 01:11:12 +0000782cmd ::= PRAGMA ids(X). {sqlitePragma(pParse,&X,&X,0);}
drhf57b14a2001-09-14 18:54:08 +0000783plus_num(A) ::= plus_opt number(X). {A = X;}
784minus_num(A) ::= MINUS number(X). {A = X;}
785number(A) ::= INTEGER(X). {A = X;}
786number(A) ::= FLOAT(X). {A = X;}
787plus_opt ::= PLUS.
788plus_opt ::= .
danielk1977c3f9bad2002-05-15 08:30:12 +0000789
790//////////////////////////// The CREATE TRIGGER command /////////////////////
drhf0f258b2003-04-21 18:48:45 +0000791
792cmd ::= CREATE(A) trigger_decl BEGIN trigger_cmd_list(S) END(Z). {
drh4b59ab52002-08-24 18:24:51 +0000793 Token all;
794 all.z = A.z;
795 all.n = (Z.z - A.z) + Z.n;
drhf0f258b2003-04-21 18:48:45 +0000796 sqliteFinishTrigger(pParse, S, &all);
797}
798
799trigger_decl ::= temp(T) TRIGGER nm(B) trigger_time(C) trigger_event(D)
800 ON nm(E) dbnm(DB) foreach_clause(F) when_clause(G). {
801 SrcList *pTab = sqliteSrcListAppend(0, &E, &DB);
802 sqliteBeginTrigger(pParse, &B, C, D.a, D.b, pTab, F, G, T);
danielk1977c3f9bad2002-05-15 08:30:12 +0000803}
804
805%type trigger_time {int}
806trigger_time(A) ::= BEFORE. { A = TK_BEFORE; }
807trigger_time(A) ::= AFTER. { A = TK_AFTER; }
808trigger_time(A) ::= INSTEAD OF. { A = TK_INSTEAD;}
809trigger_time(A) ::= . { A = TK_BEFORE; }
810
drhad3cab52002-05-24 02:04:32 +0000811%type trigger_event {struct TrigEvent}
812%destructor trigger_event {sqliteIdListDelete($$.b);}
danielk1977c3f9bad2002-05-15 08:30:12 +0000813trigger_event(A) ::= DELETE. { A.a = TK_DELETE; A.b = 0; }
814trigger_event(A) ::= INSERT. { A.a = TK_INSERT; A.b = 0; }
815trigger_event(A) ::= UPDATE. { A.a = TK_UPDATE; A.b = 0;}
816trigger_event(A) ::= UPDATE OF inscollist(X). {A.a = TK_UPDATE; A.b = X; }
817
818%type foreach_clause {int}
819foreach_clause(A) ::= . { A = TK_ROW; }
820foreach_clause(A) ::= FOR EACH ROW. { A = TK_ROW; }
821foreach_clause(A) ::= FOR EACH STATEMENT. { A = TK_STATEMENT; }
822
823%type when_clause {Expr *}
824when_clause(A) ::= . { A = 0; }
825when_clause(A) ::= WHEN expr(X). { A = X; }
826
827%type trigger_cmd_list {TriggerStep *}
drhf0f258b2003-04-21 18:48:45 +0000828%destructor trigger_cmd_list {sqliteDeleteTriggerStep($$);}
danielk1977c3f9bad2002-05-15 08:30:12 +0000829trigger_cmd_list(A) ::= trigger_cmd(X) SEMI trigger_cmd_list(Y). {
drha69d9162003-04-17 22:57:53 +0000830 X->pNext = Y;
831 A = X;
832}
danielk1977c3f9bad2002-05-15 08:30:12 +0000833trigger_cmd_list(A) ::= . { A = 0; }
834
835%type trigger_cmd {TriggerStep *}
drhf0f258b2003-04-21 18:48:45 +0000836%destructor trigger_cmd {sqliteDeleteTriggerStep($$);}
danielk1977c3f9bad2002-05-15 08:30:12 +0000837// UPDATE
drh5ad1a6c2002-07-01 12:27:09 +0000838trigger_cmd(A) ::= UPDATE orconf(R) nm(X) SET setlist(Y) where_opt(Z).
danielk1977c3f9bad2002-05-15 08:30:12 +0000839 { A = sqliteTriggerUpdateStep(&X, Y, Z, R); }
840
841// INSERT
drh3054efe2004-02-12 17:28:13 +0000842trigger_cmd(A) ::= insert_cmd(R) INTO nm(X) inscollist_opt(F)
danielk1977c3f9bad2002-05-15 08:30:12 +0000843 VALUES LP itemlist(Y) RP.
844{A = sqliteTriggerInsertStep(&X, F, Y, 0, R);}
845
drh3054efe2004-02-12 17:28:13 +0000846trigger_cmd(A) ::= insert_cmd(R) INTO nm(X) inscollist_opt(F) select(S).
danielk1977c3f9bad2002-05-15 08:30:12 +0000847 {A = sqliteTriggerInsertStep(&X, F, 0, S, R);}
848
849// DELETE
drh5ad1a6c2002-07-01 12:27:09 +0000850trigger_cmd(A) ::= DELETE FROM nm(X) where_opt(Y).
danielk1977c3f9bad2002-05-15 08:30:12 +0000851 {A = sqliteTriggerDeleteStep(&X, Y);}
852
853// SELECT
854trigger_cmd(A) ::= select(X). {A = sqliteTriggerSelectStep(X); }
855
danielk19776f349032002-06-11 02:25:40 +0000856// The special RAISE expression that may occur in trigger programs
drh4b59ab52002-08-24 18:24:51 +0000857expr(A) ::= RAISE(X) LP IGNORE RP(Y). {
858 A = sqliteExpr(TK_RAISE, 0, 0, 0);
859 A->iColumn = OE_Ignore;
drh6977fea2002-10-22 23:38:04 +0000860 sqliteExprSpan(A, &X, &Y);
drh4b59ab52002-08-24 18:24:51 +0000861}
862expr(A) ::= RAISE(X) LP ROLLBACK COMMA nm(Z) RP(Y). {
863 A = sqliteExpr(TK_RAISE, 0, 0, &Z);
864 A->iColumn = OE_Rollback;
drh6977fea2002-10-22 23:38:04 +0000865 sqliteExprSpan(A, &X, &Y);
drh4b59ab52002-08-24 18:24:51 +0000866}
867expr(A) ::= RAISE(X) LP ABORT COMMA nm(Z) RP(Y). {
868 A = sqliteExpr(TK_RAISE, 0, 0, &Z);
869 A->iColumn = OE_Abort;
drh6977fea2002-10-22 23:38:04 +0000870 sqliteExprSpan(A, &X, &Y);
drh4b59ab52002-08-24 18:24:51 +0000871}
872expr(A) ::= RAISE(X) LP FAIL COMMA nm(Z) RP(Y). {
873 A = sqliteExpr(TK_RAISE, 0, 0, &Z);
874 A->iColumn = OE_Fail;
drh6977fea2002-10-22 23:38:04 +0000875 sqliteExprSpan(A, &X, &Y);
drh4b59ab52002-08-24 18:24:51 +0000876}
danielk19776f349032002-06-11 02:25:40 +0000877
danielk1977c3f9bad2002-05-15 08:30:12 +0000878//////////////////////// DROP TRIGGER statement //////////////////////////////
drhd24cc422003-03-27 12:51:24 +0000879cmd ::= DROP TRIGGER nm(X) dbnm(D). {
drh79a519c2003-05-17 19:04:03 +0000880 sqliteDropTrigger(pParse,sqliteSrcListAppend(0,&X,&D));
danielk1977c3f9bad2002-05-15 08:30:12 +0000881}
drh113088e2003-03-20 01:16:58 +0000882
883//////////////////////// ATTACH DATABASE file AS name /////////////////////////
drh4d189ca2004-02-12 18:46:38 +0000884cmd ::= ATTACH database_kw_opt ids(F) AS nm(D) key_opt(K). {
885 sqliteAttach(pParse, &F, &D, &K);
drh1c2d8412003-03-31 00:30:47 +0000886}
drh4d189ca2004-02-12 18:46:38 +0000887%type key_opt {Token}
888key_opt(A) ::= USING ids(X). { A = X; }
889key_opt(A) ::= . { A.z = 0; A.n = 0; }
drh113088e2003-03-20 01:16:58 +0000890
891database_kw_opt ::= DATABASE.
892database_kw_opt ::= .
893
894//////////////////////// DETACH DATABASE name /////////////////////////////////
drh1c2d8412003-03-31 00:30:47 +0000895cmd ::= DETACH database_kw_opt nm(D). {
896 sqliteDetach(pParse, &D);
897}