diff options
author | drh <drh@noemail.net> | 2004-05-28 16:00:21 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-05-28 16:00:21 +0000 |
commit | 51846b56edaba72e986cd7128f38547690c48671 (patch) | |
tree | f6b4001f3d42bdca49717dff08c6b7d0b135c11d /src/sqliteInt.h | |
parent | 76d505baadc5afeaab6cdfb862c8a666a9f2eb5c (diff) | |
download | sqlite-51846b56edaba72e986cd7128f38547690c48671.tar.gz sqlite-51846b56edaba72e986cd7128f38547690c48671.zip |
Factor common code for generating index keys into a procedure. Other
speed improvements and bug fixes. (CVS 1487)
FossilOrigin-Name: 6661bb5f9c1692f94b8b7d900b6be07f027e6324
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 7f7e049dd..c19a6cc35 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.259 2004/05/28 12:33:31 danielk1977 Exp $ +** @(#) $Id: sqliteInt.h,v 1.260 2004/05/28 16:00:22 drh Exp $ */ #include "config.h" #include "sqlite.h" @@ -1267,6 +1267,7 @@ int sqlite3ExprIsInteger(Expr*, int*); int sqlite3IsRowid(const char*); void sqlite3GenerateRowDelete(sqlite*, Vdbe*, Table*, int, int); void sqlite3GenerateRowIndexDelete(sqlite*, Vdbe*, Table*, int, char*); +void sqlite3GenerateIndexKey(Vdbe*, Index*, int); void sqlite3GenerateConstraintChecks(Parse*,Table*,int,char*,int,int,int,int); void sqlite3CompleteInsertion(Parse*, Table*, int, char*, int, int, int); int sqlite3OpenTableAndIndices(Parse*, Table*, int); |