From: stephan Date: Tue, 1 Jul 2025 18:38:02 +0000 (+0000) Subject: Parameter number doc corrections for the previous check-in. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=417876bd8b03148271b5c886a5818980992d8ae9;p=thirdparty%2Fsqlite.git Parameter number doc corrections for the previous check-in. FossilOrigin-Name: 97b06c4594dc3d056334dfba6f310fb6d058456adde6abacfef29f0244637d39 --- diff --git a/manifest b/manifest index 5abda552ca..736e1bd968 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Add\sAPI\sdocs\sfor\ssqlite3_column_text_v2()\sand\ssqlite3_column_blob_v2(). -D 2025-07-01T18:36:11.756 +C Parameter\snumber\sdoc\scorrections\sfor\sthe\sprevious\scheck-in. +D 2025-07-01T18:38:02.421 F .fossil-settings/binary-glob 61195414528fb3ea9693577e1980230d78a1f8b0a54c78cf1b9b24d0a409ed6a x F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea @@ -787,7 +787,7 @@ F src/resolve.c d40fe18d7c2fd0339f5846ffcf7d6809866e380acdf14c76fb2af87e9fe13f64 F src/rowset.c 8432130e6c344b3401a8874c3cb49fefe6873fec593294de077afea2dce5ec97 F src/select.c 882d739e0d5e6c7a8b46a3cca3ada37fe1a56301f1360d6b141312c666bbe482 F src/shell.c.in 4f14a1f5196b6006abc8e73cc8fd6c1a62cf940396f8ba909d6711f35f074bb6 -F src/sqlite.h.in 54824d50c69df8f81502fcebc23d407ee09cb7f7ebd951be72b670e6f31298c4 +F src/sqlite.h.in e2687f6ea0c9b1bfb2ec1d3f976c18b82ecc536f4db175ec2debb2b84514f074 F src/sqlite3.rc 015537e6ac1eec6c7050e17b616c2ffe6f70fca241835a84a4f0d5937383c479 F src/sqlite3ext.h 0bfd049bb2088cc44c2ad54f2079d1c6e43091a4e1ce8868779b75f6c1484f1e F src/sqliteInt.h 21c089759415895c86220d35c22cd17fdc6ca27653e1ec0c744d1e6808d0545a @@ -2208,8 +2208,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 5a2734bbf8b471fa27f8f4b687e4d24f64c7663b823908f1ee8cd21bb93beb98 -R dae4fce04bcce555b325cd0b17ed5060 +P 60614fed447270b8342f6ee04f4ed9d5c81393c5344a917820a0a7e571de19a9 +R 5c5a95c9983dd3d0270a9337c5c9ff3c U stephan -Z 79b34d6cd08aaec438188d7aafa77f7b +Z 713328a34cf705fec53b4538fbdfe5de # Remove this line to create a well-formed Fossil manifest. diff --git a/manifest.uuid b/manifest.uuid index 53643169c8..9c898ceaba 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -60614fed447270b8342f6ee04f4ed9d5c81393c5344a917820a0a7e571de19a9 +97b06c4594dc3d056334dfba6f310fb6d058456adde6abacfef29f0244637d39 diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 9a4c180058..2f65fc5a78 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -5291,13 +5291,13 @@ int sqlite3_data_count(sqlite3_stmt *pStmt); ** ** ^The sqlite3_column_text_v2() and sqlite3_column_blob_v2() ** interfaces deliver most of their output via their 3rd, 4th, and 5th -** output-pointer arguments. The first is an output pointer to the +** output-pointer arguments. The 3rd is an output pointer to the ** resulting memory (the same pointer which would be returned by their -** non-v2 counterparts). The second is an integer pointer into which, -** if it is not NULL, the length of the memory, in bytes, is -** written. The 5th argument is an integer pointer which, if not NULL, -** gets set to the [SQLITE_INTEGER | column's SQL type]. On success -** these interfaces return 0. On error they do not modify any of their +** non-v2 counterparts). The 4th is an integer pointer into which, if +** it is not NULL, the length of the memory, in bytes, is written. The +** 5th argument is an integer pointer which, if not NULL, gets set to +** the [SQLITE_INTEGER | column's SQL type]. On success these +** interfaces return 0. On error they do not modify any of their ** output pointers and return SQLITE_NOMEM on allocation error, ** SQLITE_MISUSE if either their first or third arguments are NULL, ** and SQLITE_RANGE if the given column index is out of range.