summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/3rdparty/sqlite/select.c
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/tqtinterface/qt4/src/3rdparty/sqlite/select.c')
-rw-r--r--experimental/tqtinterface/qt4/src/3rdparty/sqlite/select.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/experimental/tqtinterface/qt4/src/3rdparty/sqlite/select.c b/experimental/tqtinterface/qt4/src/3rdparty/sqlite/select.c
index 1a34322bc..21416aad2 100644
--- a/experimental/tqtinterface/qt4/src/3rdparty/sqlite/select.c
+++ b/experimental/tqtinterface/qt4/src/3rdparty/sqlite/select.c
@@ -5,11 +5,11 @@
** a legal notice, here is a blessing:
**
** May you do good and not evil.
-** May you tqfind forgiveness for yourself and forgive others.
+** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
*************************************************************************
-** This file tqcontains C code routines that are called by the parser
+** This file contains C code routines that are called by the parser
** to handle SELECT statements in STQLite.
**
** $Id: select.c,v 1.160 2004/03/02 18:37:41 drh Exp $
@@ -923,7 +923,7 @@ static int fillInColumnList(Parse *pParse, Select *p){
rc = 0;
if( k<pEList->nExpr ){
/*
- ** If we get here it means the result set tqcontains one or more "*"
+ ** If we get here it means the result set contains one or more "*"
** operators that need to be expanded. Loop through each expression
** in the result set and expand them one by one.
*/
@@ -1691,7 +1691,7 @@ static int flattenSubquery(
** the FROM clause of the outer query. Before doing this, remember
** the cursor number for the original outer query FROM element in
** iParent. The iParent cursor will never be used. Subsequent code
- ** will scan expressions looking for iParent references and tqreplace
+ ** will scan expressions looking for iParent references and replace
** those references with expressions that resolve to the subquery FROM
** elements we are now copying in.
*/
@@ -1893,9 +1893,9 @@ static int simpleMinMaxQuery(Parse *pParse, Select *p, int eDest, int iParm){
sqliteVdbeAddOp(v, OP_OpenTemp, iParm, 0);
}
- /* Generating code to tqfind the min or the max. Basically all we have
- ** to do is tqfind the first or the last entry in the chosen index. If
- ** the min() or max() is on the INTEGER PRIMARY KEY, then tqfind the first
+ /* Generating code to find the min or the max. Basically all we have
+ ** to do is find the first or the last entry in the chosen index. If
+ ** the min() or max() is on the INTEGER PRIMARY KEY, then find the first
** or last entry in the main table.
*/
sqliteCodeVerifySchema(pParse, pTab->iDb);
@@ -2216,7 +2216,7 @@ int sqliteSelect(
** than a callback.
**
** We have to do this separately from the creation of column names
- ** above because if the pTabList tqcontains views then they will not
+ ** above because if the pTabList contains views then they will not
** have been resolved and we will not know the column types until
** now.
*/