diff options
Diffstat (limited to 'src/libs/sqlite2/where.c')
-rw-r--r-- | src/libs/sqlite2/where.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/sqlite2/where.c b/src/libs/sqlite2/where.c index ea427719..52421fb4 100644 --- a/src/libs/sqlite2/where.c +++ b/src/libs/sqlite2/where.c @@ -143,7 +143,7 @@ static int exprTableUsage(ExprMaskSet *pMaskSet, Expr *p){ } /* -** Return TRUE if the given operator is one of the operators that is +** Return true if the given operator is one of the operators that is ** allowed for an indexable WHERE clause. The allowed operators are ** "=", "<", ">", "<=", ">=", and "IN". */ @@ -381,7 +381,7 @@ WhereInfo *sqliteWhereBegin( Parse *pParse, /* The parser context */ SrcList *pTabList, /* A list of all tables to be scanned */ Expr *pWhere, /* The WHERE clause */ - int pushKey, /* If TRUE, leave the table key on the stack */ + int pushKey, /* If true, leave the table key on the stack */ ExprList **ppOrderBy /* An ORDER BY clause, or NULL */ ){ int i; /* Loop counter */ |