aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2005-06-07 09:21:07 +0000
committerdanielk1977 <danielk1977@noemail.net>2005-06-07 09:21:07 +0000
commitdb0441b155dbe5877ddf9f975da2bd7e0db23374 (patch)
treedb642d3d27e254ce08ee4264d03e280ee0d105f3 /src
parentcbe21be330c9c1d23bab10f9b7e70a72075bac14 (diff)
downloadsqlite-db0441b155dbe5877ddf9f975da2bd7e0db23374.tar.gz
sqlite-db0441b155dbe5877ddf9f975da2bd7e0db23374.zip
Remove SSE vacuum hook. (CVS 2502)
FossilOrigin-Name: 59960a59151ae6c711dee404e60e12d4edaa3dda
Diffstat (limited to 'src')
-rw-r--r--src/vacuum.c14
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;
}