diff options
author | drh <drh@noemail.net> | 2002-02-19 13:39:21 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2002-02-19 13:39:21 +0000 |
commit | aaab5725dba68b9c40288cdce11619d601b460c1 (patch) | |
tree | 6c86629d0d3df2720d50a732cab4bfcc67c6059c /src/insert.c | |
parent | a80a1e6ae42f71331400db08120a8c8646a2f8e9 (diff) | |
download | sqlite-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/insert.c')
-rw-r--r-- | src/insert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/insert.c b/src/insert.c index aa49c4082..2efabfd02 100644 --- a/src/insert.c +++ b/src/insert.c @@ -12,7 +12,7 @@ ** This file contains C code routines that are called by the parser ** to handle INSERT statements in SQLite. ** -** $Id: insert.c,v 1.43 2002/02/18 13:56:37 drh Exp $ +** $Id: insert.c,v 1.44 2002/02/19 13:39:22 drh Exp $ */ #include "sqliteInt.h" @@ -368,7 +368,7 @@ insert_cleanup: ** is used. Or if pParse->onError==OE_Default then the onError value ** for the constraint is used. ** -** The calling routine must an open read/write cursor for pTab with +** The calling routine must open a read/write cursor for pTab with ** cursor number "base". All indices of pTab must also have open ** read/write cursors with cursor number base+i for the i-th cursor. ** Except, if there is no possibility of a REPLACE action then |