summaryrefslogtreecommitdiffstats
path: root/src/libs/sqlite2/sqliteInt.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/sqlite2/sqliteInt.h')
-rw-r--r--src/libs/sqlite2/sqliteInt.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/sqlite2/sqliteInt.h b/src/libs/sqlite2/sqliteInt.h
index 3c4d818a..20c05ff0 100644
--- a/src/libs/sqlite2/sqliteInt.h
+++ b/src/libs/sqlite2/sqliteInt.h
@@ -372,7 +372,7 @@ struct sqlite {
struct sqliteInitInfo { /* Information used during initialization */
int iDb; /* When back is being initialized */
int newTnum; /* Rootpage of table being initialized */
- u8 busy; /* TRUE if currently initializing */
+ u8 busy; /* true if currently initializing */
} init;
struct Vdbe *pVdbe; /* List of active virtual machines */
void (*xTrace)(void*,const char*); /* Trace function */
@@ -694,7 +694,7 @@ struct Expr {
Token span; /* Complete text of the expression */
int iTable, iColumn; /* When op==TK_COLUMN, then this expr node means the
** iColumn-th field of the iTable-th table. */
- int iAgg; /* When op==TK_COLUMN and pParse->useAgg==TRUE, pull
+ int iAgg; /* When op==TK_COLUMN and pParse->useAgg==true, pull
** result from the iAgg-th element of the aggregator */
Select *pSelect; /* When the expression is a sub-select. Also the
** right side of "<expr> IN (<select>)" */
@@ -900,7 +900,7 @@ struct Select {
** If AggExpr.pExpr==0, that means the expression is "count(*)".
*/
struct AggExpr {
- int isAgg; /* if TRUE contains an aggregate function */
+ int isAgg; /* if true contains an aggregate function */
Expr *pExpr; /* The expression */
FuncDef *pFunc; /* Information about the aggregate function */
};
@@ -920,7 +920,7 @@ struct Parse {
const char *zTail; /* All SQL text past the last semicolon parsed */
Table *pNewTable; /* A table being constructed by CREATE TABLE */
Vdbe *pVdbe; /* An engine for executing database bytecode */
- u8 colNamesSet; /* TRUE after OP_ColumnName has been issued to pVdbe */
+ u8 colNamesSet; /* true after OP_ColumnName has been issued to pVdbe */
u8 explain; /* True if the EXPLAIN flag is found on the query */
u8 nameClash; /* A permanent table name clashes with temp table name */
u8 useAgg; /* If true, extract field values from the aggregator