diff options
author | drh <drh@noemail.net> | 2007-05-04 18:30:40 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-05-04 18:30:40 +0000 |
commit | ca5557f91d1a38800eea2742dc7bc2012887f83a (patch) | |
tree | f19d155d68100c5f579e20989adb2a6a38250e10 /src/sqliteInt.h | |
parent | 744f2f4658b54404177663389a7cb9f457194c00 (diff) | |
download | sqlite-ca5557f91d1a38800eea2742dc7bc2012887f83a.tar.gz sqlite-ca5557f91d1a38800eea2742dc7bc2012887f83a.zip |
Change incremental vacuum to be triggered by a pragma rather than a command.
We have a lot to learn about this yet and we do not want to paint ourselves
into a corner by commiting to specific syntax too early. (CVS 3921)
FossilOrigin-Name: b13e497a326697ab42b429993a1eee7df3c0c3eb
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index b59bf5006..dc2cdd12e 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.555 2007/05/04 16:14:38 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.556 2007/05/04 18:30:41 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1914,7 +1914,6 @@ int sqlite3VtabBegin(sqlite3 *, sqlite3_vtab *); FuncDef *sqlite3VtabOverloadFunction(FuncDef*, int nArg, Expr*); void sqlite3InvalidFunction(sqlite3_context*,int,sqlite3_value**); int sqlite3Reprepare(Vdbe*); -void sqlite3IncrVacuum(Parse *pParse, Token*); #ifdef SQLITE_SSE #include "sseInt.h" |