]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Change the parser on this branch to more closely match trunk. This saves a few more...
authordan <dan@noemail.net>
Thu, 11 Jul 2019 18:43:33 +0000 (18:43 +0000)
committerdan <dan@noemail.net>
Thu, 11 Jul 2019 18:43:33 +0000 (18:43 +0000)
FossilOrigin-Name: be01b801fbc258f0ab9542130cec12a5ea5e2d0bf087684a9eda909ad459c211

manifest
manifest.uuid
src/parse.y

index 07f6d39ac53c9dcd4514db8109602ff585f682cf..8bde9a30605e90cef0befb9cefd6f4ee11a7f7ee 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Minor\sperformance\simprovement\sin\ssqlite3ExprDeleteNN().
-D 2019-07-10T20:16:53.830
+C Change\sthe\sparser\son\sthis\sbranch\sto\smore\sclosely\smatch\strunk.\sThis\ssaves\sa\sfew\smore\scycles.
+D 2019-07-11T18:43:33.538
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -511,7 +511,7 @@ F src/os_win.c 85d9e532d0444ab6c16d7431490c2e279e282aa0917b0e988996b1ae0de5c5a0
 F src/os_win.h 7b073010f1451abe501be30d12f6bc599824944a
 F src/pager.c 422fd8cfa59fb9173eff36a95878904a0eeb0dcc62ba49350acc8b1e51c4dc7b
 F src/pager.h 217921e81eb5fe455caa5cda96061959706bcdd29ddb57166198645ef7822ac3
-F src/parse.y 2902f393b08e33f4af42e2b63f943be62f5de096138461459de60084f598a056
+F src/parse.y 6f2e8ec7df1e4d4ab57c3c4f9e4815b13a78357685a917a512d6f3d949d8c435
 F src/pcache.c fd2d0553b3222d6b9f7cb251079e5bca1299d1161da3027b525932d8bf46340a
 F src/pcache.h 4f87acd914cef5016fae3030343540d75f5b85a1877eed1a2a19b9f284248586
 F src/pcache1.c be64b2f3908a7f97c56c963676eb12f0d6254c95b28cdc1d73a186eff213219d
@@ -1833,7 +1833,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P 7a1e30a17f57ca006dd84b6f97b0c7811bf4c6da4b02903452ffc4bc363cab9b
-R 6bd4ab9e9ad32527f5b65731f0494801
+P bcc8b38ac75b731a4cd2873ab83f423be036467a511b617c779869de9bbb5383
+R 7366949ada14c091807ed4dad610ae76
 U dan
-Z 7ff155988343772e802f3ddf15426065
+Z 9f13574d0ae5d3c1b08c0a4ecde014da
index 5793e74a4cfc1bd932d928df5d68e3e844ac6c43..0fa6ef77324ed9643f07d0df4d003357b4c1ff15 100644 (file)
@@ -1 +1 @@
-bcc8b38ac75b731a4cd2873ab83f423be036467a511b617c779869de9bbb5383
\ No newline at end of file
+be01b801fbc258f0ab9542130cec12a5ea5e2d0bf087684a9eda909ad459c211
\ No newline at end of file
index dda9f627aadfcb96495d9928f13110b0d1478c9c..3cef3e5e6b7eb2d62fd24456bcdb8bcfb3adea7a 100644 (file)
@@ -1036,23 +1036,31 @@ expr(A) ::= CAST LP expr(E) AS typetoken(T) RP. {
 %endif  SQLITE_OMIT_CAST
 
 
-%ifdef SQLITE_OMIT_WINDOWFUNC
 expr(A) ::= id(X) LP distinct(D) exprlist(Y) RP. {
   A = sqlite3ExprFunction(pParse, Y, &X, D);
 }
 expr(A) ::= id(X) LP STAR RP. {
   A = sqlite3ExprFunction(pParse, 0, &X, 0);
 }
-%endif
 
 %ifndef SQLITE_OMIT_WINDOWFUNC
-expr(A) ::= id(X) LP distinct(D) exprlist(Y) RP filter_opt(F) over_opt(Z). {
+%type filter_over {
+  struct FunctionTail {
+    Window *pWin;
+    Expr *pFilter;
+  }
+}
+%destructor filter_over {
+  sqlite3WindowDelete(pParse->db, $$.pWin);
+  sqlite3ExprDelete(pParse->db, $$.pFilter);
+}
+expr(A) ::= id(X) LP distinct(D) exprlist(Y) RP filter_over(F). {
   A = sqlite3ExprFunction(pParse, Y, &X, D);
-  sqlite3WindowAttach(pParse, A, F, Z);
+  sqlite3WindowAttach(pParse, A, F.pFilter, F.pWin);
 }
-expr(A) ::= id(X) LP STAR RP filter_opt(F) over_opt(Z). {
+expr(A) ::= id(X) LP STAR RP filter_over(F). {
   A = sqlite3ExprFunction(pParse, 0, &X, 0);
-  sqlite3WindowAttach(pParse, A, F, Z);
+  sqlite3WindowAttach(pParse, A, F.pFilter, F.pWin);
 }
 %endif
 
@@ -1659,8 +1667,11 @@ windowdefn(A) ::= nm(X) AS LP window(Y) RP. {
 %type part_opt {ExprList*}
 %destructor part_opt {sqlite3ExprListDelete(pParse->db, $$);}
 
-%type filter_opt {Expr*}
-%destructor filter_opt {sqlite3ExprDelete(pParse->db, $$);}
+%type filter_clause {Expr*}
+%destructor filter_clause {sqlite3ExprDelete(pParse->db, $$);}
+
+%type over_clause {Window*}
+%destructor over_clause {sqlite3WindowDelete(pParse->db, $$);}
 
 %type range_or_rows {int}
 
@@ -1726,22 +1737,31 @@ frame_exclude(A) ::= GROUP|TIES(X).  {A = @X; /*A-overwrites-X*/}
 %destructor window_clause {sqlite3WindowListDelete(pParse->db, $$);}
 window_clause(A) ::= WINDOW windowdefn_list(B). { A = B; }
 
-%type over_opt {Window*}
-%destructor over_opt {sqlite3WindowDelete(pParse->db, $$);}
-over_opt(A) ::= . { A=0; }
-over_opt(A) ::= OVER LP window(Z) RP. {
+filter_over(F) ::= filter_clause(A) over_clause(B). {
+  F.pFilter = A;
+  F.pWin = B;
+}
+filter_over(F) ::= over_clause(B). {
+  F.pFilter = 0;
+  F.pWin = B;
+}
+filter_over(F) ::= filter_clause(A). {
+  F.pFilter = A;
+  F.pWin = 0;
+}
+
+over_clause(A) ::= OVER LP window(Z) RP. {
   A = Z;
   assert( A!=0 );
 }
-over_opt(A) ::= OVER nm(Z). {
+over_clause(A) ::= OVER nm(Z). {
   A = (Window*)sqlite3DbMallocZero(pParse->db, sizeof(Window));
   if( A ){
     A->zName = sqlite3DbStrNDup(pParse->db, Z.z, Z.n);
   }
 }
 
-filter_opt(A) ::= .                            { A = 0; }
-filter_opt(A) ::= FILTER LP WHERE expr(X) RP.  { A = X; }
+filter_clause(A) ::= FILTER LP WHERE expr(X) RP.  { A = X; }
 %endif /* SQLITE_OMIT_WINDOWFUNC */
 
 /*