diff options
author | drh <drh@noemail.net> | 2005-06-12 21:35:51 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2005-06-12 21:35:51 +0000 |
commit | f0863fe5686623f9578b6ce3c67dbd18d4e7b312 (patch) | |
tree | a9120fc08b7d3a0c7d3a37cbd473b69b01a139cb /src/sqliteInt.h | |
parent | 4a9f241c371857ecb55f90a6e07b997612fedd9b (diff) | |
download | sqlite-f0863fe5686623f9578b6ce3c67dbd18d4e7b312.tar.gz sqlite-f0863fe5686623f9578b6ce3c67dbd18d4e7b312.zip |
Update older opcode names to be more meaningful in light of the latest
code design. (CVS 2506)
FossilOrigin-Name: 36f2da1f8d8d434f861ecad55c9d86549751c954
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 86a54d1e6..966090dc0 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.386 2005/06/06 21:19:57 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.387 2005/06/12 21:35:52 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1141,7 +1141,7 @@ struct AuthContext { }; /* -** Bitfield flags for P2 value in OP_PutIntKey and OP_Delete +** Bitfield flags for P2 value in OP_Insert and OP_Delete */ #define OPFLAG_NCHANGE 1 /* Set to update db->nChange */ #define OPFLAG_LASTROWID 2 /* Set to update db->lastRowid */ |