diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 22:04:08 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 22:04:08 -0600 |
commit | e02e31c8b9d854cd62cbe9799228f6e08e882773 (patch) | |
tree | 53303c981d0b20e03c5a2fc8e959fa74adcb90d1 /src/3rdparty/sqlite/select.c | |
parent | 143f194af098d44bf0dd1ebb29e59f30ce48d523 (diff) | |
download | tqt3-e02e31c8b9d854cd62cbe9799228f6e08e882773.tar.gz tqt3-e02e31c8b9d854cd62cbe9799228f6e08e882773.zip |
Sync with latest script
Diffstat (limited to 'src/3rdparty/sqlite/select.c')
-rw-r--r-- | src/3rdparty/sqlite/select.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/3rdparty/sqlite/select.c b/src/3rdparty/sqlite/select.c index 5052bd33d..f47281748 100644 --- a/src/3rdparty/sqlite/select.c +++ b/src/3rdparty/sqlite/select.c @@ -145,7 +145,7 @@ static int columnIndex(Table *pTab, const char *zCol){ } /* -** Add a term to the WHERE expression in *ppExpr that retquires the +** Add a term to the WHERE expression in *ppExpr that requires the ** zCol column to be equal in the two tables pTab1 and pTab2. */ static void addWhereTerm( @@ -1422,7 +1422,7 @@ static int multiSelect(Parse *pParse, Select *p, int eDest, int iParm){ int iCont, iBreak, iStart; int nLimit, nOffset; - /* INTERSECT is different from the others since it retquires + /* INTERSECT is different from the others since it requires ** two temporary tables. Hence it has its own case. Begin ** by allocating the tables we will need. */ @@ -1559,7 +1559,7 @@ substExprList(ExprList *pList, int iTable, ExprList *pEList){ ** ** The default way of implementing this query is to execute the ** subquery first and store the results in a temporary table, then -** run the outer query on that temporary table. This retquires two +** run the outer query on that temporary table. This requires two ** passes over the data. Furthermore, because the temporary table ** has no indices, the WHERE clause on the outer query cannot be ** optimized. @@ -2082,7 +2082,7 @@ int sqliteSelect( } if( pHaving ){ if( pGroupBy==0 ){ - sqliteErrorMsg(pParse, "a GROUP BY clause is retquired before HAVING"); + sqliteErrorMsg(pParse, "a GROUP BY clause is required before HAVING"); goto select_end; } if( sqliteExprResolveIds(pParse, pTabList, pEList, pHaving) ){ |