From: dan Date: Fri, 4 Oct 2024 17:02:36 +0000 (+0000) Subject: Fix typo in documentation for SQLITE_SUBTYPE. No code changes. X-Git-Tag: version-3.47.0~64 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c8c95f514947b26f522183bfa7c5db76c5df9285;p=thirdparty%2Fsqlite.git Fix typo in documentation for SQLITE_SUBTYPE. No code changes. FossilOrigin-Name: 6733893f450097e07cbd563d6a46790825fd0689283d60181c09793ce7d5509e --- diff --git a/manifest b/manifest index dd25afaa33..85f652cffa 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Unconditionally\sinclude\s<ctype.h>\sin\ssqliteInt.h,\seven\sin\sbuilds\swhere\nit\sis\snot\sneeded. -D 2024-10-03T16:31:08.852 +C Fix\stypo\sin\sdocumentation\sfor\sSQLITE_SUBTYPE.\sNo\scode\schanges. +D 2024-10-04T17:02:36.758 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724 @@ -771,7 +771,7 @@ F src/resolve.c 9750a281f7ba073b4e6da2be1a6c4071f5d841a7746c5fb3f70d6d793b6675ea F src/rowset.c 8432130e6c344b3401a8874c3cb49fefe6873fec593294de077afea2dce5ec97 F src/select.c 4b14337a2742f0c0beeba490e9a05507e9b4b12184b9cd12773501d08d48e3fe F src/shell.c.in 981efe98f98a983c1d0193d18528eb2d765207c0c82b67b610be60f17995a43e -F src/sqlite.h.in 8a6dfab34cf3ad687346446a8c930e49132770ac380e8317f1aa3383e86fcaed +F src/sqlite.h.in 1def838497ad53c81486649ce79821925d1ac20a9843af317a344d507efe116e F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8 F src/sqlite3ext.h 3f046c04ea3595d6bfda99b781926b17e672fd6d27da2ba6d8d8fc39981dcb54 F src/sqliteInt.h 989dca8b25ca11f5c52e5a457cc500042c43b0b3e5fea9a12d9020d0350722cd @@ -2215,8 +2215,8 @@ F vsixtest/vsixtest.tcl 6195aba1f12a5e10efc2b8c0009532167be5e301abe5b31385638080 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0 -P 4dea7221129350a15df8dee5aabd5567e47adda4d255b65d4ba82fd821913759 -R f2244f797434d5d72e0a77b20c024462 -U drh -Z 01a73e86129b00ff79017b970432daf9 +P 825f01d7e258ac7981f715fd10708560381b079f0e026abc414cf56d16d862da +R 97cc1dd0446101afb82e95a43b8cd5d1 +U dan +Z 7fafcff3019d45fab79373554fe0a5e2 # Remove this line to create a well-formed Fossil manifest. diff --git a/manifest.uuid b/manifest.uuid index 4b29a72009..9b7bdc0c33 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -825f01d7e258ac7981f715fd10708560381b079f0e026abc414cf56d16d862da +6733893f450097e07cbd563d6a46790825fd0689283d60181c09793ce7d5509e diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 27f7a8cfeb..5108d3c1e9 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -5603,7 +5603,7 @@ int sqlite3_create_window_function( ** This flag instructs SQLite to omit some corner-case optimizations that ** might disrupt the operation of the [sqlite3_value_subtype()] function, ** causing it to return zero rather than the correct subtype(). -** SQL functions that invokes [sqlite3_value_subtype()] should have this +** All SQL functions that invoke [sqlite3_value_subtype()] should have this ** property. If the SQLITE_SUBTYPE property is omitted, then the return ** value from [sqlite3_value_subtype()] might sometimes be zero even though ** a non-zero subtype was specified by the function argument expression.