diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vacuum.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/src/vacuum.c b/src/vacuum.c index 7f5fa420f..eb45fb99e 100644 --- a/src/vacuum.c +++ b/src/vacuum.c @@ -14,7 +14,7 @@ ** Most of the code in this file may be omitted by defining the ** SQLITE_OMIT_VACUUM macro. ** -** $Id: vacuum.c,v 1.44 2005/05/24 12:01:02 danielk1977 Exp $ +** $Id: vacuum.c,v 1.45 2005/06/07 09:21:07 danielk1977 Exp $ */ #include "sqliteInt.h" #include "os.h" @@ -306,17 +306,5 @@ end_of_vacuum: sqlite3ResetInternalSchema(db, 0); #endif -#ifdef SQLITE_SSE - /* If the SSE extension is compiled in, recompile all statements - ** in the sqlite_statements table after a successful VACUUM - */ - if( rc==SQLITE_OK ){ - rc = sqlite3RecompileStatements(db); - if( rc!=SQLITE_OK ){ - sqlite3SetString(pzErrMsg, sqlite3_errmsg(db), (char *)0); - } - } -#endif /* SQLITE_SSE */ - return rc; } |