]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Clarify comments that describe query flattener restrictions associated with
authordrh <>
Mon, 19 Sep 2022 19:25:15 +0000 (19:25 +0000)
committerdrh <>
Mon, 19 Sep 2022 19:25:15 +0000 (19:25 +0000)
outer joins.  No code changes.

FossilOrigin-Name: 2647d73bb1876d01851f52cb3fd6af08a962ab336b6d51c160d27b1baf94f75f

manifest
manifest.uuid
src/select.c

index 01e55af7cef6563331717ab45ed82071d2d09366..5284efaae68cb56a64a02664f8d990a6d187a0f8 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Fix\sa\sminor\scomment\stypo.\s\sNo\schanges\sto\scode\sor\sdocumentation.
-D 2022-09-19T17:41:59.981
+C Clarify\scomments\sthat\sdescribe\squery\sflattener\srestrictions\sassociated\swith\nouter\sjoins.\s\sNo\scode\schanges.
+D 2022-09-19T19:25:15.448
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -588,7 +588,7 @@ F src/printf.c e99ee9741e79ae3873458146f59644276657340385ade4e76a5f5d1c25793764
 F src/random.c 546d6feb15ec69c1aafe9bb351a277cbb498fd5410e646add673acb805714960
 F src/resolve.c efea4e5fbecfd6d0a9071b0be0d952620991673391b6ffaaf4c277b0bb674633
 F src/rowset.c ba9515a922af32abe1f7d39406b9d35730ed65efab9443dc5702693b60854c92
-F src/select.c b3ceb6bca193344c40d04e5ebedf1e2720fdfa2de3e10b44b8cb60a894577cf2
+F src/select.c dcfd2df77e4601555cef48174e3c61723f72fccfdd5b80caa5da63e23338c040
 F src/shell.c.in e7e7c2c69ae86c5ee9e8ad66227203d46ff6dce8700a1b1dababff01c71d33df
 F src/sqlite.h.in b9b7fd73239d94db20332bb6e504688001e5564b655e1318a4427a1caef4b99e
 F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8
@@ -2000,8 +2000,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P 90403759e1cf30f7c11fa8170d6df59a0dd138e1de59d2b60bec7ba15d74f67c
-R 521cb3c0dcd41c7e0b004ca89c2c0855
+P 8032db4ade66f70a102abb9d3a49e20620e204c45ad7a954a49d20403985bf07
+R 279e5ed5d3d08518a51dc0906b1aae25
 U drh
-Z 374dcab7dfe4ba80d60b576329b62410
+Z 9a3376787d630872f605d6b2d292568c
 # Remove this line to create a well-formed Fossil manifest.
index 73e259d45885168170601f07760d049e41ca911c..6a2f858f6286b6fc88a04dc2d80244e1483b3580 100644 (file)
@@ -1 +1 @@
-8032db4ade66f70a102abb9d3a49e20620e204c45ad7a954a49d20403985bf07
\ No newline at end of file
+2647d73bb1876d01851f52cb3fd6af08a962ab336b6d51c160d27b1baf94f75f
\ No newline at end of file
index e521236c79e698700d9657f8b3133feedbb15924..7b7731c234097161e5b986ed4e35a9f1dca165b2 100644 (file)
@@ -4181,9 +4181,8 @@ static void renumberCursors(
 **        See also (3) for restrictions on LEFT JOIN.
 **
 **  (27)  The subquery may not contain a FULL or RIGHT JOIN unless it
-**        is the first element of the parent query.  This must be the
-**        the case if:
-**        (27a) the subquery is not compound query, and
+**        is the first element of the parent query.  Two subcases:
+**        (27a) the subquery is not a compound query.
 **        (27b) the subquery is a compound query and the RIGHT JOIN occurs
 **              in any arm of the compound query.  (See also (17g).)
 **
@@ -4317,8 +4316,10 @@ static int flattenSubquery(
 
   /* Restriction (29): 
   **
-  ** We do not want two constraints on the same term of the flattened
-  ** query where one constraint has EP_InnerON and the other is EP_OuterON.
+  ** We do not want two constraints on the same FROM-clause term of the
+  ** flattened query where one constraint has the EP_InnerON flag and the
+  ** other has the EP_OuterON flag.
+  **
   ** To prevent this, one or the other of the following conditions must be
   ** false:
   **
@@ -4327,10 +4328,6 @@ static int flattenSubquery(
   **
   **   (29b)  The subquery itself must not be the right operand of a 
   **          NATURAL join or a join that has an ON or USING clause.
-  **
-  ** These conditions are sufficient to keep an EP_OuterON from being
-  ** flattened into an EP_InnerON.  Restrictions (3a) and (27a) prevent
-  ** an EP_InnerON from being flattened into an EP_OuterON.
   */
   if( pSubSrc->nSrc>=2
    && (pSubSrc->a[pSubSrc->nSrc-1].fg.jointype & JT_OUTER)!=0