aboutsummaryrefslogtreecommitdiff
path: root/src/pager.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2002-02-19 13:39:21 +0000
committerdrh <drh@noemail.net>2002-02-19 13:39:21 +0000
commitaaab5725dba68b9c40288cdce11619d601b460c1 (patch)
tree6c86629d0d3df2720d50a732cab4bfcc67c6059c /src/pager.c
parenta80a1e6ae42f71331400db08120a8c8646a2f8e9 (diff)
downloadsqlite-aaab5725dba68b9c40288cdce11619d601b460c1.tar.gz
sqlite-aaab5725dba68b9c40288cdce11619d601b460c1.zip
Change the name of the sanity_check PRAGMA to "integrity_check" and make
it available on all compiles. (CVS 381) FossilOrigin-Name: c6e9048e66c8d8e2d5f6c62aa724eef3e9d9f572
Diffstat (limited to 'src/pager.c')
-rw-r--r--src/pager.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pager.c b/src/pager.c
index bdb5741e6..1cf1d2bc3 100644
--- a/src/pager.c
+++ b/src/pager.c
@@ -18,7 +18,7 @@
** file simultaneously, or one process from reading the database while
** another is writing.
**
-** @(#) $Id: pager.c,v 1.39 2002/02/14 12:50:35 drh Exp $
+** @(#) $Id: pager.c,v 1.40 2002/02/19 13:39:22 drh Exp $
*/
#include "sqliteInt.h"
#include "pager.h"
@@ -653,7 +653,7 @@ int sqlitepager_ref(void *pData){
**
** Writing all free dirty pages to the database after the sync is a
** non-obvious optimization. fsync() is an expensive operation so we
-** want to minimize the number it is called. After an fsync() call,
+** want to minimize the number ot times it is called. After an fsync() call,
** we are free to write dirty pages back to the database. It is best
** to go ahead and write as many dirty pages as possible to minimize
** the risk of having to do another fsync() later on. Writing dirty
@@ -1234,7 +1234,7 @@ int *sqlitepager_stats(Pager *pPager){
**
** This routine should be called with the transaction journal already
** open. A new checkpoint journal is created that can be used to rollback
-** changes of a single command within a larger transaction.
+** changes of a single SQL command within a larger transaction.
*/
int sqlitepager_ckpt_begin(Pager *pPager){
int rc;