diff options
author | danielk1977 <danielk1977@noemail.net> | 2009-03-17 17:48:59 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2009-03-17 17:48:59 +0000 |
commit | 21822c58b09547d28ef4061a5467efe4293aa50c (patch) | |
tree | 749f58b287a16f4164ce32e20d38ff1630ec1392 /src/sqliteInt.h | |
parent | 3ded8d6f2a187a4e7df31433ed76a25319a23a63 (diff) | |
download | sqlite-21822c58b09547d28ef4061a5467efe4293aa50c.tar.gz sqlite-21822c58b09547d28ef4061a5467efe4293aa50c.zip |
Fix a problem that could cause a crash when a shared-cache schema contains column default values. (CVS 6353)
FossilOrigin-Name: afadddc34eee3d6a39102b790ce1a869b33d4286
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index fafd5f846..015b386ed 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.841 2009/03/16 13:19:36 danielk1977 Exp $ +** @(#) $Id: sqliteInt.h,v 1.842 2009/03/17 17:49:00 danielk1977 Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -1522,8 +1522,9 @@ struct Expr { ** Flags passed to the sqlite3ExprDup() function. See the header comment ** above sqlite3ExprDup() for details. */ -#define EXPRDUP_REDUCE 0x0001 -#define EXPRDUP_SPAN 0x0002 +#define EXPRDUP_REDUCE 0x0001 +#define EXPRDUP_SPAN 0x0002 +#define EXPRDUP_DISTINCTSPAN 0x0004 /* ** A list of expressions. Each expression may optionally have a |