diff options
author | drh <drh@noemail.net> | 2009-11-26 14:01:53 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2009-11-26 14:01:53 +0000 |
commit | 5f18a221a186919e804c8416c314903e413d2cfe (patch) | |
tree | 507bd5a8e076ffc1af74f6b462c06821155914fb /src/sqliteInt.h | |
parent | f7829ad0e94b02b26703795369632902c9e955ce (diff) | |
download | sqlite-5f18a221a186919e804c8416c314903e413d2cfe.tar.gz sqlite-5f18a221a186919e804c8416c314903e413d2cfe.zip |
Simplifications to the sqlite3_trace() bound parameter substitution logic.
FossilOrigin-Name: cb4b928648504ce29d751834e9ee3b5278dfca65
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 3adba1c62..334a39a0f 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2961,6 +2961,7 @@ int sqlite3VtabCallDestroy(sqlite3*, int, const char *); int sqlite3VtabBegin(sqlite3 *, VTable *); FuncDef *sqlite3VtabOverloadFunction(sqlite3 *,FuncDef*, int nArg, Expr*); void sqlite3InvalidFunction(sqlite3_context*,int,sqlite3_value**); +int sqlite3VdbeParameterIndex(Vdbe*, const char*, int); int sqlite3TransferBindings(sqlite3_stmt *, sqlite3_stmt *); int sqlite3Reprepare(Vdbe*); void sqlite3ExprListCheckLength(Parse*, ExprList*, const char*); |