|
|
|
@ -12731,7 +12731,7 @@ struct VdbeFunc { |
|
|
|
*/ |
|
|
|
struct sqlite3_context { |
|
|
|
FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */ |
|
|
|
VdbeFunc *pVdbeFunc; /* Auxilary data, if created. */ |
|
|
|
VdbeFunc *pVdbeFunc; /* Auxiliary data, if created. */ |
|
|
|
Mem s; /* The return value is stored here */ |
|
|
|
Mem *pMem; /* Memory cell used to store aggregate context */ |
|
|
|
int isError; /* Error code returned by the function. */ |
|
|
|
@ -44929,7 +44929,7 @@ SQLITE_PRIVATE int sqlite3WalOpen( |
|
|
|
} |
|
|
|
|
|
|
|
/* |
|
|
|
** Change the size to which the WAL file is trucated on each reset. |
|
|
|
** Change the size to which the WAL file is truncated on each reset. |
|
|
|
*/ |
|
|
|
SQLITE_PRIVATE void sqlite3WalLimit(Wal *pWal, i64 iLimit){ |
|
|
|
if( pWal ) pWal->mxWalSize = iLimit; |
|
|
|
@ -59355,7 +59355,7 @@ static int vdbeCommit(sqlite3 *db, Vdbe *p){ |
|
|
|
|
|
|
|
/* The complex case - There is a multi-file write-transaction active. |
|
|
|
** This requires a master journal file to ensure the transaction is |
|
|
|
** committed atomicly. |
|
|
|
** committed atomically. |
|
|
|
*/ |
|
|
|
#ifndef SQLITE_OMIT_DISKIO |
|
|
|
else{ |
|
|
|
@ -61383,7 +61383,7 @@ SQLITE_API void *sqlite3_aggregate_context(sqlite3_context *p, int nByte){ |
|
|
|
} |
|
|
|
|
|
|
|
/* |
|
|
|
** Return the auxilary data pointer, if any, for the iArg'th argument to |
|
|
|
** Return the auxiliary data pointer, if any, for the iArg'th argument to |
|
|
|
** the user-function defined by pCtx. |
|
|
|
*/ |
|
|
|
SQLITE_API void *sqlite3_get_auxdata(sqlite3_context *pCtx, int iArg){ |
|
|
|
@ -61398,7 +61398,7 @@ SQLITE_API void *sqlite3_get_auxdata(sqlite3_context *pCtx, int iArg){ |
|
|
|
} |
|
|
|
|
|
|
|
/* |
|
|
|
** Set the auxilary data pointer and delete function, for the iArg'th |
|
|
|
** Set the auxiliary data pointer and delete function, for the iArg'th |
|
|
|
** argument to the user-function defined by pCtx. Any previous value is |
|
|
|
** deleted by calling the delete function specified when it was set. |
|
|
|
*/ |
|
|
|
@ -63408,7 +63408,7 @@ SQLITE_PRIVATE int sqlite3VdbeExec( |
|
|
|
} |
|
|
|
#endif |
|
|
|
|
|
|
|
/* On any opcode with the "out2-prerelase" tag, free any |
|
|
|
/* On any opcode with the "out2-prerelease" tag, free any |
|
|
|
** external allocations out of mem[p2] and set mem[p2] to be |
|
|
|
** an undefined integer. Opcodes will either fill in the integer |
|
|
|
** value or convert mem[p2] to a different type. |
|
|
|
|