From: drh Date: Fri, 22 May 2009 01:02:26 +0000 (+0000) Subject: Add omitted word in the documentation for total_change_count(). X-Git-Tag: version-3.6.15~90 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4fb0866d58328e1b91f96e84410472a7195f0cca;p=thirdparty%2Fsqlite.git Add omitted word in the documentation for total_change_count(). ticket #3870. (CVS 6667) FossilOrigin-Name: 3f6fd16f92a16445891142b0a7dc9f6d6dc06546 --- diff --git a/manifest b/manifest index 1610923d80..59c0defbf7 100644 --- a/manifest +++ b/manifest @@ -1,5 +1,5 @@ -C Fix\san\s8-byte\salignment\sproblem\son\sHP/UX.\s\sTicket\s#3869\s(CVS\s6666) -D 2009-05-22T01:00:13 +C Add\somitted\sword\sin\sthe\sdocumentation\sfor\stotal_change_count().\nticket\s#3870.\s(CVS\s6667) +D 2009-05-22T01:02:27 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 0c459a45c1047be24c6a58646e8be4d001a3a28a +F src/sqlite.h.in 72b9457725c0d6af5755648fac46acb1fa9ff810 F src/sqlite3ext.h 1db7d63ab5de4b3e6b83dd03d1a4e64fef6d2a17 F src/sqliteInt.h b4cc76a99bc82894703528376067c743eb27184c F src/sqliteLimit.h ffe93f5a0c4e7bd13e70cd7bf84cfb5c3465f45d @@ -729,7 +729,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e -P 309adb5e22af2735b69460c164d870aea99c6da3 -R 502e45b62a8dda38913294e9ae5f6000 +P fc64f8509299a398ac1513e1778f271083e3eabc +R 1ccd1dc5086992926054edb8f95c12c7 U drh -Z e863a3640947f6e85f2331101a806baf +Z 31df23dee33615106585895026c375fa diff --git a/manifest.uuid b/manifest.uuid index bd8516cfbe..69c2eb4ac2 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -fc64f8509299a398ac1513e1778f271083e3eabc \ No newline at end of file +3f6fd16f92a16445891142b0a7dc9f6d6dc06546 \ No newline at end of file diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 6b9973fe89..0c41003002 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -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.451 2009/05/17 12:07:48 drh Exp $ +** @(#) $Id: sqlite.h.in,v 1.452 2009/05/22 01:02:27 drh Exp $ */ #ifndef _SQLITE3_H_ #define _SQLITE3_H_ @@ -1282,9 +1282,9 @@ int sqlite3_changes(sqlite3*); ** [CREATE TRIGGER | trigger] contexts. However, ** the count does not include changes used to implement [REPLACE] constraints, ** do rollbacks or ABORT processing, or [DROP TABLE] processing. The -** count does not rows of views that fire an [INSTEAD OF trigger], though if -** the INSTEAD OF trigger makes changes of its own, those changes are -** counted. +** count does not include rows of views that fire an [INSTEAD OF trigger], +** though if the INSTEAD OF trigger makes changes of its own, those changes +** are counted. ** The changes are counted as soon as the statement that makes them is ** completed (when the statement handle is passed to [sqlite3_reset()] or ** [sqlite3_finalize()]).