1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-08 03:22:21 +03:00

Disable the update hook for the truncation optimization used by DELETE. (CVS 2863)

FossilOrigin-Name: 448b3b9dede724749df0004ca39c649951f1f2ca
This commit is contained in:
drh
2006-01-05 23:42:50 +00:00
parent 6aafc29b5f
commit d78901da51
5 changed files with 22 additions and 17 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** Internal interface definitions for SQLite.
**
** @(#) $Id: sqliteInt.h,v 1.449 2006/01/05 13:48:29 danielk1977 Exp $
** @(#) $Id: sqliteInt.h,v 1.450 2006/01/05 23:42:51 drh Exp $
*/
#ifndef _SQLITEINT_H_
#define _SQLITEINT_H_
@@ -285,14 +285,14 @@ struct SqliteTsd {
u8 disableReleaseMemory; /* True to make sqlite3_release_memory() a no-op */
#ifndef SQLITE_OMIT_MEMORY_MANAGEMENT
i64 nSoftHeapLimit; /* -ve for unlimited */
i64 nSoftHeapLimit; /* Suggested max mem allocation. No limit if <0 */
i64 nAlloc; /* Number of bytes currently allocated */
Pager *pPager; /* Linked list of all pagers in this thread */
#endif
#ifndef SQLITE_OMIT_SHARED_CACHE
u8 useSharedData; /* True if shared pagers and schemas are enabled */
BtShared *pBtree;
BtShared *pBtree; /* Linked list of all currently open BTrees */
#endif
#ifdef SQLITE_MEMDEBUG