diff options
author | danielk1977 <danielk1977@noemail.net> | 2009-01-02 17:33:46 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2009-01-02 17:33:46 +0000 |
commit | cd38d520d12fde9c98facda0b7fd176342c95c06 (patch) | |
tree | 772bbe5285786cea82a0c3ab1be937e77413a371 /src/sqliteInt.h | |
parent | 5df7c0f96bf7659906d5b3bbb1924d1978148bb9 (diff) | |
download | sqlite-cd38d520d12fde9c98facda0b7fd176342c95c06.tar.gz sqlite-cd38d520d12fde9c98facda0b7fd176342c95c06.zip |
Modify the (transaction) method of the tcl interface to use savepoints. This makes nested calls to (transaction) work more intuitively. (CVS 6101)
FossilOrigin-Name: f047758de9b499866aa4ddf16011498b12a7b963
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 735ed92e6..64b4a12d5 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.816 2008/12/28 16:55:25 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.817 2009/01/02 17:33:46 danielk1977 Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1503,7 +1503,7 @@ struct SrcList { int iCursor; /* The VDBE cursor number used to access this table */ Expr *pOn; /* The ON clause of a join */ IdList *pUsing; /* The USING clause of a join */ - Bitmask colUsed; /* Bit N (1<<N) set if column N or pTab is used */ + Bitmask colUsed; /* Bit N (1<<N) set if column N of pTab is used */ char *zIndex; /* Identifier from "INDEXED BY <zIndex>" clause */ Index *pIndex; /* Index structure corresponding to zIndex, if any */ } a[1]; /* One entry for each identifier on the list */ |