From: drh <> Date: Thu, 21 Aug 2025 18:47:01 +0000 (+0000) Subject: Fix a minor typo in a comment. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fheads%2Fmaster;p=thirdparty%2Fsqlite.git Fix a minor typo in a comment. FossilOrigin-Name: 9ada44eb6d26532e45cdd2ed8d5707f1734d0177a13b493ff9cf070e0a992522 --- diff --git a/manifest b/manifest index d4a8f2bf99..73c5ed4732 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Add\sconfig\sas\san\salias\sfor\sthe\sreconfigure\smakefile\starget.\sMinor\smakefile\sdoc\stweaks.\sRandom\stypo\sfixes\sin\sshell.c.in\sand\stclsqlite.h\spointed\sout\sby\sthe\smisspell\smakefile\starget.\sNo\scode\schanges. -D 2025-08-21T17:59:28.172 +C Fix\sa\sminor\stypo\sin\sa\scomment. +D 2025-08-21T18:47:01.547 F .fossil-settings/binary-glob 61195414528fb3ea9693577e1980230d78a1f8b0a54c78cf1b9b24d0a409ed6a x F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea @@ -741,7 +741,7 @@ F src/printf.c 5f0c957af9699e849d786e8fbaa3baab648ca5612230dc17916434c14bc8698f F src/random.c 606b00941a1d7dd09c381d3279a058d771f406c5213c9932bbd93d5587be4b9c F src/resolve.c f8d1d011aba0964ff1bdccd049d4d2c2fec217efd90d202a4bb775e926b2c25d F src/rowset.c 8432130e6c344b3401a8874c3cb49fefe6873fec593294de077afea2dce5ec97 -F src/select.c 639bac342c1fdc6be97ee806f5e9e4b0ed325889a3f24a17e955a6e9be99f510 +F src/select.c 78ebf432355e820962a5001277cb43ffe3d82441c6dc9c8f0aeb0b15fbd5dd02 F src/shell.c.in 0636915df0dbac6c780f04959f5d1055f206fb281b2c8fc8b113fe7bfc7d44ef F src/sqlite.h.in ebfc0358de0e18aabee7fa918f2f846894e23bebc74160fbe265c99046ee61b8 F src/sqlite3.rc 015537e6ac1eec6c7050e17b616c2ffe6f70fca241835a84a4f0d5937383c479 @@ -2169,8 +2169,8 @@ F tool/version-info.c 3b36468a90faf1bbd59c65fd0eb66522d9f941eedd364fabccd7227350 F tool/warnings-clang.sh bbf6a1e685e534c92ec2bfba5b1745f34fb6f0bc2a362850723a9ee87c1b31a7 F tool/warnings.sh 1ad0169b022b280bcaaf94a7fa231591be96b514230ab5c98fbf15cd7df842dd F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f -P b7751d144330593b5d41cb50e44b5134baad722be65173a7f55887f5e86a8c9d -R 359a172be743a2ba56fdf6cd3ef60701 -U stephan -Z 9023dae810be69b855f77befd01945fa +P 9f15182776b30676c9aae9bcb5d4ad7580359fbdd607c2a9227c9cf2c81a4054 +R e87d0e2ec7db35078d5f7c68106ae850 +U drh +Z a3b0bda8d54e990d1d0f3efd38f275ec # Remove this line to create a well-formed Fossil manifest. diff --git a/manifest.uuid b/manifest.uuid index 7fae32f095..565294e9a4 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -9f15182776b30676c9aae9bcb5d4ad7580359fbdd607c2a9227c9cf2c81a4054 +9ada44eb6d26532e45cdd2ed8d5707f1734d0177a13b493ff9cf070e0a992522 diff --git a/src/select.c b/src/select.c index fb9425bf76..8bdd13e272 100644 --- a/src/select.c +++ b/src/select.c @@ -3868,7 +3868,7 @@ static int multiSelectOrderBy( ** ## About "isOuterJoin": ** ** The isOuterJoin column indicates that the replacement will occur into a -** position in the parent that NULL-able due to an OUTER JOIN. Either the +** position in the parent that is NULL-able due to an OUTER JOIN. Either the ** target slot in the parent is the right operand of a LEFT JOIN, or one of ** the left operands of a RIGHT JOIN. In either case, we need to potentially ** bypass the substituted expression with OP_IfNullRow.