]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Additional clarification of the 3rd parameter to sqlite3_create_function().
authordrh <drh@noemail.net>
Sun, 24 May 2009 21:59:27 +0000 (21:59 +0000)
committerdrh <drh@noemail.net>
Sun, 24 May 2009 21:59:27 +0000 (21:59 +0000)
Documentation change only; no changes to code.  Ticket #3875. (CVS 6674)

FossilOrigin-Name: dd75e376e8fed4f2e347672d483ee7c1929007cf

manifest
manifest.uuid
src/sqlite.h.in

index 072947e7945f6c2d4b3b0951bf7b8b967f813907..c32cf18735abf4aa14dbfebe9b69b25bde834cd2 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C In\sthe\sprevious,\sthe\supper\sbound\son\sthe\snumber\sof\sfunction\sarguments\sis\n127,\snot\s255.\s\sTicket\s#3876\s(CVS\s6673)
-D 2009-05-24T11:08:50
+C Additional\sclarification\sof\sthe\s3rd\sparameter\sto\ssqlite3_create_function().\nDocumentation\schange\sonly;\sno\schanges\sto\scode.\s\sTicket\s#3875.\s(CVS\s6674)
+D 2009-05-24T21:59:28
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in 583e87706abc3026960ed759aff6371faf84c211
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -160,7 +160,7 @@ F src/resolve.c 2ce8f8bc8a0c913cbaec3fb3da2be113ea1fa5af
 F src/rowset.c c64dafba1f9fd876836c8db8682966b9d197eb1f
 F src/select.c 88e654ab5b183e4fdb084680b66b5bfa6f214dc5
 F src/shell.c 7eacd0bdaa887931f5ff205c9defc3e8df95a2dd
-F src/sqlite.h.in 51b7b83fcc7ad65487ec326c3cc94e8acfa19700
+F src/sqlite.h.in 79210c4d8905cfb4b038486dde5f36fabb796a86
 F src/sqlite3ext.h 1db7d63ab5de4b3e6b83dd03d1a4e64fef6d2a17
 F src/sqliteInt.h b4cc76a99bc82894703528376067c743eb27184c
 F src/sqliteLimit.h ffe93f5a0c4e7bd13e70cd7bf84cfb5c3465f45d
@@ -730,7 +730,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P 6b7929ed36fa14291b6cb09de5808100945ad7a0
-R 85a0c825c8600dc0dc5d02dc377983f7
+P 4fe4c5fac51c0a5b50f839a3f43d786e1ff4a4e0
+R 10e213bd038eb44cac74337664dd82cd
 U drh
-Z 39c5a36b1b617f4e8d15ff8818beaa05
+Z a39fbf7e1cf81f82a252cb610a6a23cf
index 54c3ad7f0ffc5b60d36d8e5be9f09a95eba7e4ec..8815cbab364d787fa694f8b6e4b843c41e9d0833 100644 (file)
@@ -1 +1 @@
-4fe4c5fac51c0a5b50f839a3f43d786e1ff4a4e0
\ No newline at end of file
+dd75e376e8fed4f2e347672d483ee7c1929007cf
\ No newline at end of file
index 7800678240a19a54cb559a61c1bef09706a1838c..d2c7e5afd1719eafe4bab2421fc70690e7ce7d6c 100644 (file)
@@ -30,7 +30,7 @@
 ** the version number) and changes its name to "sqlite3.h" as
 ** part of the build process.
 **
-** @(#) $Id: sqlite.h.in,v 1.454 2009/05/24 11:08:50 drh Exp $
+** @(#) $Id: sqlite.h.in,v 1.455 2009/05/24 21:59:28 drh Exp $
 */
 #ifndef _SQLITE3_H_
 #define _SQLITE3_H_
@@ -3077,7 +3077,8 @@ int sqlite3_reset(sqlite3_stmt *pStmt);
 ** aggregate takes. If this parameter is -1, then the SQL function or
 ** aggregate may take any number of arguments between 0 and the limit
 ** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]).  If the third
-** parameter must not be less than -1 or greater than 127.
+** parameter is less than -1 or greater than 127 then the behavior is
+** undefined.
 **
 ** The fourth parameter, eTextRep, specifies what
 ** [SQLITE_UTF8 | text encoding] this SQL function prefers for
@@ -3128,7 +3129,7 @@ int sqlite3_reset(sqlite3_stmt *pStmt);
 ** statement in which the function is running.
 **
 ** Requirements:
-** [H16103] [H16106] [H16109] [H16112] [H16118] [H16121] [H16124] [H16127]
+** [H16103] [H16106] [H16109] [H16112] [H16118] [H16121] [H16127]
 ** [H16130] [H16133] [H16136] [H16139] [H16142]
 */
 int sqlite3_create_function(