diff options
author | drh <drh@noemail.net> | 2008-06-25 00:12:41 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-06-25 00:12:41 +0000 |
commit | 0acb7e4849ba2bc99770ccd1ba6c3bfad1f087cd (patch) | |
tree | ee9c2f5637d490ea907304cf624f3c271ffba43a /src/vdbeInt.h | |
parent | 91ef8f45c484f30612d330740f5f579e1307e368 (diff) | |
download | sqlite-0acb7e4849ba2bc99770ccd1ba6c3bfad1f087cd.tar.gz sqlite-0acb7e4849ba2bc99770ccd1ba6c3bfad1f087cd.zip |
The compound-select merge optimization passes quick.test with no errors. (CVS 5299)
FossilOrigin-Name: 8bbfa97837a74ef0514e0c92ea2a6576f02cc361
Diffstat (limited to 'src/vdbeInt.h')
-rw-r--r-- | src/vdbeInt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/vdbeInt.h b/src/vdbeInt.h index 7cbcb8e3a..2100e3830 100644 --- a/src/vdbeInt.h +++ b/src/vdbeInt.h @@ -15,7 +15,7 @@ ** 6000 lines long) it was split up into several smaller files and ** this header information was factored out. ** -** $Id: vdbeInt.h,v 1.148 2008/06/20 18:13:25 drh Exp $ +** $Id: vdbeInt.h,v 1.149 2008/06/25 00:12:41 drh Exp $ */ #ifndef _VDBEINT_H_ #define _VDBEINT_H_ @@ -321,7 +321,6 @@ struct Vdbe { u8 expired; /* True if the VM needs to be recompiled */ u8 minWriteFileFormat; /* Minimum file format for writable database files */ u8 inVtabMethod; /* See comments above */ - int iCompare; /* Result of most recent OP_Compare comparison */ int nChange; /* Number of db changes made since last reset */ i64 startTime; /* Time when query started - used for profiling */ int btreeMask; /* Bitmask of db->aDb[] entries referenced */ |