]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Add omitted word in the documentation for total_change_count().
authordrh <drh@noemail.net>
Fri, 22 May 2009 01:02:26 +0000 (01:02 +0000)
committerdrh <drh@noemail.net>
Fri, 22 May 2009 01:02:26 +0000 (01:02 +0000)
ticket #3870. (CVS 6667)

FossilOrigin-Name: 3f6fd16f92a16445891142b0a7dc9f6d6dc06546

manifest
manifest.uuid
src/sqlite.h.in

index 1610923d801f7c5a69c4a3d01bec3503e972b472..59c0defbf73350bef609176842f6bbea31f52a83 100644 (file)
--- 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
index bd8516cfbef087fc970ff8f7a860c684e8f2ea3d..69c2eb4ac2a3f1890aa1ad44c1146c6b12c76f0a 100644 (file)
@@ -1 +1 @@
-fc64f8509299a398ac1513e1778f271083e3eabc
\ No newline at end of file
+3f6fd16f92a16445891142b0a7dc9f6d6dc06546
\ No newline at end of file
index 6b9973fe894b6eb4dcd20907e4fb5c565f6853fe..0c41003002b1298255a1781d0d221e3476341a54 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.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()]).