1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Make provisions in the code to support Provisions to support caching of

serialized statements in the SSE extension. (CVS 3139)

FossilOrigin-Name: 5048fae04227857c064c0ba48eb11bedeb467df0
This commit is contained in:
drh
2006-03-16 14:05:14 +00:00
parent fd2d26bb7d
commit 3bc0e05c61
4 changed files with 14 additions and 10 deletions

View File

@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.337 2006/03/13 15:06:07 drh Exp $
** $Id: main.c,v 1.338 2006/03/16 14:05:15 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -109,7 +109,7 @@ int sqlite3_close(sqlite3 *db){
}
#ifdef SQLITE_SSE
sqlite3_finalize(db->pFetch);
sqlite3SseCleanup(db);
#endif
/* If there are any outstanding VMs, return SQLITE_BUSY. */