1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/sql/SQLite/vdbeInt.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,447 @@
1.4 +/*
1.5 +** 2003 September 6
1.6 +**
1.7 +** The author disclaims copyright to this source code. In place of
1.8 +** a legal notice, here is a blessing:
1.9 +**
1.10 +** May you do good and not evil.
1.11 +** May you find forgiveness for yourself and forgive others.
1.12 +** May you share freely, never taking more than you give.
1.13 +**
1.14 +*************************************************************************
1.15 +** This is the header file for information that is private to the
1.16 +** VDBE. This information used to all be at the top of the single
1.17 +** source code file "vdbe.c". When that file became too big (over
1.18 +** 6000 lines long) it was split up into several smaller files and
1.19 +** this header information was factored out.
1.20 +**
1.21 +** $Id: vdbeInt.h,v 1.153 2008/08/02 03:50:39 drh Exp $
1.22 +*/
1.23 +#ifndef _VDBEINT_H_
1.24 +#define _VDBEINT_H_
1.25 +
1.26 +/*
1.27 +** intToKey() and keyToInt() used to transform the rowid. But with
1.28 +** the latest versions of the design they are no-ops.
1.29 +*/
1.30 +#define keyToInt(X) (X)
1.31 +#define intToKey(X) (X)
1.32 +
1.33 +
1.34 +/*
1.35 +** SQL is translated into a sequence of instructions to be
1.36 +** executed by a virtual machine. Each instruction is an instance
1.37 +** of the following structure.
1.38 +*/
1.39 +typedef struct VdbeOp Op;
1.40 +
1.41 +/*
1.42 +** Boolean values
1.43 +*/
1.44 +typedef unsigned char Bool;
1.45 +
1.46 +/*
1.47 +** A cursor is a pointer into a single BTree within a database file.
1.48 +** The cursor can seek to a BTree entry with a particular key, or
1.49 +** loop over all entries of the Btree. You can also insert new BTree
1.50 +** entries or retrieve the key or data from the entry that the cursor
1.51 +** is currently pointing to.
1.52 +**
1.53 +** Every cursor that the virtual machine has open is represented by an
1.54 +** instance of the following structure.
1.55 +**
1.56 +** If the Cursor.isTriggerRow flag is set it means that this cursor is
1.57 +** really a single row that represents the NEW or OLD pseudo-table of
1.58 +** a row trigger. The data for the row is stored in Cursor.pData and
1.59 +** the rowid is in Cursor.iKey.
1.60 +*/
1.61 +struct Cursor {
1.62 + BtCursor *pCursor; /* The cursor structure of the backend */
1.63 + int iDb; /* Index of cursor database in db->aDb[] (or -1) */
1.64 + i64 lastRowid; /* Last rowid from a Next or NextIdx operation */
1.65 + i64 nextRowid; /* Next rowid returned by OP_NewRowid */
1.66 + Bool zeroed; /* True if zeroed out and ready for reuse */
1.67 + Bool rowidIsValid; /* True if lastRowid is valid */
1.68 + Bool atFirst; /* True if pointing to first entry */
1.69 + Bool useRandomRowid; /* Generate new record numbers semi-randomly */
1.70 + Bool nullRow; /* True if pointing to a row with no data */
1.71 + Bool nextRowidValid; /* True if the nextRowid field is valid */
1.72 + Bool pseudoTable; /* This is a NEW or OLD pseudo-tables of a trigger */
1.73 + Bool ephemPseudoTable;
1.74 + Bool deferredMoveto; /* A call to sqlite3BtreeMoveto() is needed */
1.75 + Bool isTable; /* True if a table requiring integer keys */
1.76 + Bool isIndex; /* True if an index containing keys only - no data */
1.77 + u8 bogusIncrKey; /* Something for pIncrKey to point to if pKeyInfo==0 */
1.78 + i64 movetoTarget; /* Argument to the deferred sqlite3BtreeMoveto() */
1.79 + Btree *pBt; /* Separate file holding temporary table */
1.80 + int nData; /* Number of bytes in pData */
1.81 + char *pData; /* Data for a NEW or OLD pseudo-table */
1.82 + i64 iKey; /* Key for the NEW or OLD pseudo-table row */
1.83 + u8 *pIncrKey; /* Pointer to pKeyInfo->incrKey */
1.84 + KeyInfo *pKeyInfo; /* Info about index keys needed by index cursors */
1.85 + int nField; /* Number of fields in the header */
1.86 + i64 seqCount; /* Sequence counter */
1.87 + sqlite3_vtab_cursor *pVtabCursor; /* The cursor for a virtual table */
1.88 + const sqlite3_module *pModule; /* Module for cursor pVtabCursor */
1.89 +
1.90 + /* Cached information about the header for the data record that the
1.91 + ** cursor is currently pointing to. Only valid if cacheValid is true.
1.92 + ** aRow might point to (ephemeral) data for the current row, or it might
1.93 + ** be NULL.
1.94 + */
1.95 + int cacheStatus; /* Cache is valid if this matches Vdbe.cacheCtr */
1.96 + int payloadSize; /* Total number of bytes in the record */
1.97 + u32 *aType; /* Type values for all entries in the record */
1.98 + u32 *aOffset; /* Cached offsets to the start of each columns data */
1.99 + u8 *aRow; /* Data for the current row, if all on one page */
1.100 +};
1.101 +typedef struct Cursor Cursor;
1.102 +
1.103 +/*
1.104 +** A value for Cursor.cacheValid that means the cache is always invalid.
1.105 +*/
1.106 +#define CACHE_STALE 0
1.107 +
1.108 +/*
1.109 +** Internally, the vdbe manipulates nearly all SQL values as Mem
1.110 +** structures. Each Mem struct may cache multiple representations (string,
1.111 +** integer etc.) of the same value. A value (and therefore Mem structure)
1.112 +** has the following properties:
1.113 +**
1.114 +** Each value has a manifest type. The manifest type of the value stored
1.115 +** in a Mem struct is returned by the MemType(Mem*) macro. The type is
1.116 +** one of SQLITE_NULL, SQLITE_INTEGER, SQLITE_REAL, SQLITE_TEXT or
1.117 +** SQLITE_BLOB.
1.118 +*/
1.119 +struct Mem {
1.120 + union {
1.121 + i64 i; /* Integer value. Or FuncDef* when flags==MEM_Agg */
1.122 + FuncDef *pDef; /* Used only when flags==MEM_Agg */
1.123 + } u;
1.124 + double r; /* Real value */
1.125 + sqlite3 *db; /* The associated database connection */
1.126 + char *z; /* String or BLOB value */
1.127 + int n; /* Number of characters in string value, excluding '\0' */
1.128 + u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
1.129 + u8 type; /* One of SQLITE_NULL, SQLITE_TEXT, SQLITE_INTEGER, etc */
1.130 + u8 enc; /* SQLITE_UTF8, SQLITE_UTF16BE, SQLITE_UTF16LE */
1.131 + void (*xDel)(void *); /* If not null, call this function to delete Mem.z */
1.132 + char *zMalloc; /* Dynamic buffer allocated by sqlite3_malloc() */
1.133 +};
1.134 +
1.135 +/* One or more of the following flags are set to indicate the validOK
1.136 +** representations of the value stored in the Mem struct.
1.137 +**
1.138 +** If the MEM_Null flag is set, then the value is an SQL NULL value.
1.139 +** No other flags may be set in this case.
1.140 +**
1.141 +** If the MEM_Str flag is set then Mem.z points at a string representation.
1.142 +** Usually this is encoded in the same unicode encoding as the main
1.143 +** database (see below for exceptions). If the MEM_Term flag is also
1.144 +** set, then the string is nul terminated. The MEM_Int and MEM_Real
1.145 +** flags may coexist with the MEM_Str flag.
1.146 +**
1.147 +** Multiple of these values can appear in Mem.flags. But only one
1.148 +** at a time can appear in Mem.type.
1.149 +*/
1.150 +#define MEM_Null 0x0001 /* Value is NULL */
1.151 +#define MEM_Str 0x0002 /* Value is a string */
1.152 +#define MEM_Int 0x0004 /* Value is an integer */
1.153 +#define MEM_Real 0x0008 /* Value is a real number */
1.154 +#define MEM_Blob 0x0010 /* Value is a BLOB */
1.155 +
1.156 +#define MemSetTypeFlag(p, f) \
1.157 + ((p)->flags = ((p)->flags&~(MEM_Int|MEM_Real|MEM_Null|MEM_Blob|MEM_Str))|f)
1.158 +
1.159 +/* Whenever Mem contains a valid string or blob representation, one of
1.160 +** the following flags must be set to determine the memory management
1.161 +** policy for Mem.z. The MEM_Term flag tells us whether or not the
1.162 +** string is \000 or \u0000 terminated
1.163 +*/
1.164 +#define MEM_Term 0x0020 /* String rep is nul terminated */
1.165 +#define MEM_Dyn 0x0040 /* Need to call sqliteFree() on Mem.z */
1.166 +#define MEM_Static 0x0080 /* Mem.z points to a static string */
1.167 +#define MEM_Ephem 0x0100 /* Mem.z points to an ephemeral string */
1.168 +#define MEM_Agg 0x0400 /* Mem.z points to an agg function context */
1.169 +#define MEM_Zero 0x0800 /* Mem.i contains count of 0s appended to blob */
1.170 +
1.171 +#ifdef SQLITE_OMIT_INCRBLOB
1.172 + #undef MEM_Zero
1.173 + #define MEM_Zero 0x0000
1.174 +#endif
1.175 +
1.176 +
1.177 +/* A VdbeFunc is just a FuncDef (defined in sqliteInt.h) that contains
1.178 +** additional information about auxiliary information bound to arguments
1.179 +** of the function. This is used to implement the sqlite3_get_auxdata()
1.180 +** and sqlite3_set_auxdata() APIs. The "auxdata" is some auxiliary data
1.181 +** that can be associated with a constant argument to a function. This
1.182 +** allows functions such as "regexp" to compile their constant regular
1.183 +** expression argument once and reused the compiled code for multiple
1.184 +** invocations.
1.185 +*/
1.186 +struct VdbeFunc {
1.187 + FuncDef *pFunc; /* The definition of the function */
1.188 + int nAux; /* Number of entries allocated for apAux[] */
1.189 + struct AuxData {
1.190 + void *pAux; /* Aux data for the i-th argument */
1.191 + void (*xDelete)(void *); /* Destructor for the aux data */
1.192 + } apAux[1]; /* One slot for each function argument */
1.193 +};
1.194 +
1.195 +/*
1.196 +** The "context" argument for a installable function. A pointer to an
1.197 +** instance of this structure is the first argument to the routines used
1.198 +** implement the SQL functions.
1.199 +**
1.200 +** There is a typedef for this structure in sqlite.h. So all routines,
1.201 +** even the public interface to SQLite, can use a pointer to this structure.
1.202 +** But this file is the only place where the internal details of this
1.203 +** structure are known.
1.204 +**
1.205 +** This structure is defined inside of vdbeInt.h because it uses substructures
1.206 +** (Mem) which are only defined there.
1.207 +*/
1.208 +struct sqlite3_context {
1.209 + FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */
1.210 + VdbeFunc *pVdbeFunc; /* Auxilary data, if created. */
1.211 + Mem s; /* The return value is stored here */
1.212 + Mem *pMem; /* Memory cell used to store aggregate context */
1.213 + int isError; /* Error code returned by the function. */
1.214 + CollSeq *pColl; /* Collating sequence */
1.215 +};
1.216 +
1.217 +/*
1.218 +** A Set structure is used for quick testing to see if a value
1.219 +** is part of a small set. Sets are used to implement code like
1.220 +** this:
1.221 +** x.y IN ('hi','hoo','hum')
1.222 +*/
1.223 +typedef struct Set Set;
1.224 +struct Set {
1.225 + Hash hash; /* A set is just a hash table */
1.226 + HashElem *prev; /* Previously accessed hash elemen */
1.227 +};
1.228 +
1.229 +/*
1.230 +** A FifoPage structure holds a single page of valves. Pages are arranged
1.231 +** in a list.
1.232 +*/
1.233 +typedef struct FifoPage FifoPage;
1.234 +struct FifoPage {
1.235 + int nSlot; /* Number of entries aSlot[] */
1.236 + int iWrite; /* Push the next value into this entry in aSlot[] */
1.237 + int iRead; /* Read the next value from this entry in aSlot[] */
1.238 + FifoPage *pNext; /* Next page in the fifo */
1.239 + i64 aSlot[1]; /* One or more slots for rowid values */
1.240 +};
1.241 +
1.242 +/*
1.243 +** The Fifo structure is typedef-ed in vdbeInt.h. But the implementation
1.244 +** of that structure is private to this file.
1.245 +**
1.246 +** The Fifo structure describes the entire fifo.
1.247 +*/
1.248 +typedef struct Fifo Fifo;
1.249 +struct Fifo {
1.250 + int nEntry; /* Total number of entries */
1.251 + sqlite3 *db; /* The associated database connection */
1.252 + FifoPage *pFirst; /* First page on the list */
1.253 + FifoPage *pLast; /* Last page on the list */
1.254 +};
1.255 +
1.256 +/*
1.257 +** A Context stores the last insert rowid, the last statement change count,
1.258 +** and the current statement change count (i.e. changes since last statement).
1.259 +** The current keylist is also stored in the context.
1.260 +** Elements of Context structure type make up the ContextStack, which is
1.261 +** updated by the ContextPush and ContextPop opcodes (used by triggers).
1.262 +** The context is pushed before executing a trigger a popped when the
1.263 +** trigger finishes.
1.264 +*/
1.265 +typedef struct Context Context;
1.266 +struct Context {
1.267 + i64 lastRowid; /* Last insert rowid (sqlite3.lastRowid) */
1.268 + int nChange; /* Statement changes (Vdbe.nChanges) */
1.269 + Fifo sFifo; /* Records that will participate in a DELETE or UPDATE */
1.270 +};
1.271 +
1.272 +/*
1.273 +** An instance of the virtual machine. This structure contains the complete
1.274 +** state of the virtual machine.
1.275 +**
1.276 +** The "sqlite3_stmt" structure pointer that is returned by sqlite3_compile()
1.277 +** is really a pointer to an instance of this structure.
1.278 +**
1.279 +** The Vdbe.inVtabMethod variable is set to non-zero for the duration of
1.280 +** any virtual table method invocations made by the vdbe program. It is
1.281 +** set to 2 for xDestroy method calls and 1 for all other methods. This
1.282 +** variable is used for two purposes: to allow xDestroy methods to execute
1.283 +** "DROP TABLE" statements and to prevent some nasty side effects of
1.284 +** malloc failure when SQLite is invoked recursively by a virtual table
1.285 +** method function.
1.286 +*/
1.287 +struct Vdbe {
1.288 + sqlite3 *db; /* The whole database */
1.289 + Vdbe *pPrev,*pNext; /* Linked list of VDBEs with the same Vdbe.db */
1.290 + int nOp; /* Number of instructions in the program */
1.291 + int nOpAlloc; /* Number of slots allocated for aOp[] */
1.292 + Op *aOp; /* Space to hold the virtual machine's program */
1.293 + int nLabel; /* Number of labels used */
1.294 + int nLabelAlloc; /* Number of slots allocated in aLabel[] */
1.295 + int *aLabel; /* Space to hold the labels */
1.296 + Mem **apArg; /* Arguments to currently executing user function */
1.297 + Mem *aColName; /* Column names to return */
1.298 + int nCursor; /* Number of slots in apCsr[] */
1.299 + Cursor **apCsr; /* One element of this array for each open cursor */
1.300 + int nVar; /* Number of entries in aVar[] */
1.301 + Mem *aVar; /* Values for the OP_Variable opcode. */
1.302 + char **azVar; /* Name of variables */
1.303 + int okVar; /* True if azVar[] has been initialized */
1.304 + int magic; /* Magic number for sanity checking */
1.305 + int nMem; /* Number of memory locations currently allocated */
1.306 + Mem *aMem; /* The memory locations */
1.307 + int nCallback; /* Number of callbacks invoked so far */
1.308 + int cacheCtr; /* Cursor row cache generation counter */
1.309 + Fifo sFifo; /* A list of ROWIDs */
1.310 + int contextStackTop; /* Index of top element in the context stack */
1.311 + int contextStackDepth; /* The size of the "context" stack */
1.312 + Context *contextStack; /* Stack used by opcodes ContextPush & ContextPop*/
1.313 + int pc; /* The program counter */
1.314 + int rc; /* Value to return */
1.315 + unsigned uniqueCnt; /* Used by OP_MakeRecord when P2!=0 */
1.316 + int errorAction; /* Recovery action to do in case of an error */
1.317 + int inTempTrans; /* True if temp database is transactioned */
1.318 + int nResColumn; /* Number of columns in one row of the result set */
1.319 + char **azResColumn; /* Values for one row of result */
1.320 + char *zErrMsg; /* Error message written here */
1.321 + Mem *pResultSet; /* Pointer to an array of results */
1.322 + u8 explain; /* True if EXPLAIN present on SQL command */
1.323 + u8 changeCntOn; /* True to update the change-counter */
1.324 + u8 expired; /* True if the VM needs to be recompiled */
1.325 + u8 minWriteFileFormat; /* Minimum file format for writable database files */
1.326 + u8 inVtabMethod; /* See comments above */
1.327 + int nChange; /* Number of db changes made since last reset */
1.328 + i64 startTime; /* Time when query started - used for profiling */
1.329 + int btreeMask; /* Bitmask of db->aDb[] entries referenced */
1.330 + BtreeMutexArray aMutex; /* An array of Btree used here and needing locks */
1.331 + int nSql; /* Number of bytes in zSql */
1.332 + char *zSql; /* Text of the SQL statement that generated this */
1.333 +#ifdef SQLITE_DEBUG
1.334 + FILE *trace; /* Write an execution trace here, if not NULL */
1.335 +#endif
1.336 + int openedStatement; /* True if this VM has opened a statement journal */
1.337 +#ifdef SQLITE_SSE
1.338 + int fetchId; /* Statement number used by sqlite3_fetch_statement */
1.339 + int lru; /* Counter used for LRU cache replacement */
1.340 +#endif
1.341 +#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT
1.342 + Vdbe *pLruPrev;
1.343 + Vdbe *pLruNext;
1.344 +#endif
1.345 +};
1.346 +
1.347 +/*
1.348 +** An instance of the following structure holds information about a
1.349 +** single index record that has already been parsed out into individual
1.350 +** values.
1.351 +**
1.352 +** A record is an object that contains one or more fields of data.
1.353 +** Records are used to store the content of a table row and to store
1.354 +** the key of an index. A blob encoding of a record is created by
1.355 +** the OP_MakeRecord opcode of the VDBE and is disassemblied by the
1.356 +** OP_Column opcode.
1.357 +**
1.358 +** This structure holds a record that has already been disassembled
1.359 +** into its constitutent fields.
1.360 +*/
1.361 +struct UnpackedRecord {
1.362 + KeyInfo *pKeyInfo; /* Collation and sort-order information */
1.363 + u16 nField; /* Number of entries in apMem[] */
1.364 + u8 needFree; /* True if memory obtained from sqlite3_malloc() */
1.365 + u8 needDestroy; /* True if apMem[]s should be destroyed on close */
1.366 + Mem *aMem; /* Values */
1.367 +};
1.368 +
1.369 +/*
1.370 +** The following are allowed values for Vdbe.magic
1.371 +*/
1.372 +#define VDBE_MAGIC_INIT 0x26bceaa5 /* Building a VDBE program */
1.373 +#define VDBE_MAGIC_RUN 0xbdf20da3 /* VDBE is ready to execute */
1.374 +#define VDBE_MAGIC_HALT 0x519c2973 /* VDBE has completed execution */
1.375 +#define VDBE_MAGIC_DEAD 0xb606c3c8 /* The VDBE has been deallocated */
1.376 +
1.377 +/*
1.378 +** Function prototypes
1.379 +*/
1.380 +void sqlite3VdbeFreeCursor(Vdbe *, Cursor*);
1.381 +void sqliteVdbePopStack(Vdbe*,int);
1.382 +int sqlite3VdbeCursorMoveto(Cursor*);
1.383 +#if defined(SQLITE_DEBUG) || defined(VDBE_PROFILE)
1.384 +void sqlite3VdbePrintOp(FILE*, int, Op*);
1.385 +#endif
1.386 +int sqlite3VdbeSerialTypeLen(u32);
1.387 +u32 sqlite3VdbeSerialType(Mem*, int);
1.388 +int sqlite3VdbeSerialPut(unsigned char*, int, Mem*, int);
1.389 +int sqlite3VdbeSerialGet(const unsigned char*, u32, Mem*);
1.390 +void sqlite3VdbeDeleteAuxData(VdbeFunc*, int);
1.391 +
1.392 +int sqlite2BtreeKeyCompare(BtCursor *, const void *, int, int, int *);
1.393 +int sqlite3VdbeIdxKeyCompare(Cursor*,UnpackedRecord *,int,const unsigned char*,int*);
1.394 +int sqlite3VdbeIdxRowid(BtCursor *, i64 *);
1.395 +int sqlite3MemCompare(const Mem*, const Mem*, const CollSeq*);
1.396 +int sqlite3VdbeIdxRowidLen(const u8*, int, int*);
1.397 +int sqlite3VdbeExec(Vdbe*);
1.398 +int sqlite3VdbeList(Vdbe*);
1.399 +int sqlite3VdbeHalt(Vdbe*);
1.400 +int sqlite3VdbeChangeEncoding(Mem *, int);
1.401 +int sqlite3VdbeMemTooBig(Mem*);
1.402 +int sqlite3VdbeMemCopy(Mem*, const Mem*);
1.403 +void sqlite3VdbeMemShallowCopy(Mem*, const Mem*, int);
1.404 +void sqlite3VdbeMemMove(Mem*, Mem*);
1.405 +int sqlite3VdbeMemNulTerminate(Mem*);
1.406 +int sqlite3VdbeMemSetStr(Mem*, const char*, int, u8, void(*)(void*));
1.407 +void sqlite3VdbeMemSetInt64(Mem*, i64);
1.408 +void sqlite3VdbeMemSetDouble(Mem*, double);
1.409 +void sqlite3VdbeMemSetNull(Mem*);
1.410 +void sqlite3VdbeMemSetZeroBlob(Mem*,int);
1.411 +int sqlite3VdbeMemMakeWriteable(Mem*);
1.412 +int sqlite3VdbeMemStringify(Mem*, int);
1.413 +i64 sqlite3VdbeIntValue(Mem*);
1.414 +int sqlite3VdbeMemIntegerify(Mem*);
1.415 +double sqlite3VdbeRealValue(Mem*);
1.416 +void sqlite3VdbeIntegerAffinity(Mem*);
1.417 +int sqlite3VdbeMemRealify(Mem*);
1.418 +int sqlite3VdbeMemNumerify(Mem*);
1.419 +int sqlite3VdbeMemFromBtree(BtCursor*,int,int,int,Mem*);
1.420 +void sqlite3VdbeMemRelease(Mem *p);
1.421 +void sqlite3VdbeMemReleaseExternal(Mem *p);
1.422 +int sqlite3VdbeMemFinalize(Mem*, FuncDef*);
1.423 +const char *sqlite3OpcodeName(int);
1.424 +int sqlite3VdbeOpcodeHasProperty(int, int);
1.425 +int sqlite3VdbeMemGrow(Mem *pMem, int n, int preserve);
1.426 +#ifdef SQLITE_ENABLE_MEMORY_MANAGEMENT
1.427 +int sqlite3VdbeReleaseBuffers(Vdbe *p);
1.428 +#endif
1.429 +
1.430 +#ifndef NDEBUG
1.431 + void sqlite3VdbeMemSanity(Mem*);
1.432 +#endif
1.433 +int sqlite3VdbeMemTranslate(Mem*, u8);
1.434 +#ifdef SQLITE_DEBUG
1.435 + void sqlite3VdbePrintSql(Vdbe*);
1.436 + void sqlite3VdbeMemPrettyPrint(Mem *pMem, char *zBuf);
1.437 +#endif
1.438 +int sqlite3VdbeMemHandleBom(Mem *pMem);
1.439 +void sqlite3VdbeFifoInit(Fifo*, sqlite3*);
1.440 +int sqlite3VdbeFifoPush(Fifo*, i64);
1.441 +int sqlite3VdbeFifoPop(Fifo*, i64*);
1.442 +void sqlite3VdbeFifoClear(Fifo*);
1.443 +
1.444 +#ifndef SQLITE_OMIT_INCRBLOB
1.445 + int sqlite3VdbeMemExpandBlob(Mem *);
1.446 +#else
1.447 + #define sqlite3VdbeMemExpandBlob(x) SQLITE_OK
1.448 +#endif
1.449 +
1.450 +#endif /* !defined(_VDBEINT_H_) */