diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-01-03 09:51:55 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-01-03 09:51:55 +0000 |
commit | 1f4aa337cd87ccb96fdaa58233ad691aaca1ac23 (patch) | |
tree | 4d1d62f99b3d9723546d9d238873f8cd8dda7a29 /src/sqliteInt.h | |
parent | 11641c11363ef866ba15f197acf5cd38f2f518a8 (diff) | |
download | sqlite-1f4aa337cd87ccb96fdaa58233ad691aaca1ac23.tar.gz sqlite-1f4aa337cd87ccb96fdaa58233ad691aaca1ac23.zip |
Change the OP_Insert opcode to read the key and data to insert from memory cells, not the stack. (CVS 4666)
FossilOrigin-Name: 46501f490a5f5577ea31c758df749e02c7c65f39
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 61b50c269..453793271 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.631 2008/01/03 00:01:25 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.632 2008/01/03 09:51:55 danielk1977 Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1918,6 +1918,7 @@ int sqlite3OpenTempDatabase(Parse *); void sqlite3StrAccumAppend(StrAccum*,const char*,int); char *sqlite3StrAccumFinish(StrAccum*); void sqlite3StrAccumReset(StrAccum*); +void sqlite3CodeInsert(Parse *, int, u8); /* |