1
1
/******************************************************************************
2
2
** This file is an amalgamation of many separate C source files from SQLite
3
- ** version 3.32.0 . By combining all the individual C code files into this
3
+ ** version 3.32.1 . By combining all the individual C code files into this
4
4
** single large file, the entire code can be compiled as a single translation
5
5
** unit. This allows many compilers to do optimizations that would not be
6
6
** possible if the files were compiled separately. Performance improvements
@@ -1162,9 +1162,9 @@ extern "C" {
1162
1162
** [sqlite3_libversion_number()], [sqlite3_sourceid()],
1163
1163
** [sqlite_version()] and [sqlite_source_id()].
1164
1164
*/
1165
- #define SQLITE_VERSION "3.32.0 "
1166
- #define SQLITE_VERSION_NUMBER 3032000
1167
- #define SQLITE_SOURCE_ID "2020-05-22 17:46:16 5998789c9c744bce92e4cff7636bba800a75574243d6977e1fc8281e360f8d5a "
1165
+ #define SQLITE_VERSION "3.32.1 "
1166
+ #define SQLITE_VERSION_NUMBER 3032001
1167
+ #define SQLITE_SOURCE_ID "2020-05-25 16:19:56 0c1fcf4711a2e66c813aed38cf41cd3e2123ee8eb6db98118086764c4ba83350 "
1168
1168
1169
1169
/*
1170
1170
** CAPI3REF: Run-Time Library Version Numbers
@@ -17843,7 +17843,7 @@ struct Token {
17843
17843
** code for a SELECT that contains aggregate functions.
17844
17844
**
17845
17845
** If Expr.op==TK_AGG_COLUMN or TK_AGG_FUNCTION then Expr.pAggInfo is a
17846
- ** pointer to this structure. The Expr.iColumn field is the index in
17846
+ ** pointer to this structure. The Expr.iAgg field is the index in
17847
17847
** AggInfo.aCol[] or AggInfo.aFunc[] of information needed to generate
17848
17848
** code for that node.
17849
17849
**
@@ -19082,6 +19082,9 @@ SQLITE_PRIVATE int sqlite3WalkSelectFrom(Walker*, Select*);
19082
19082
SQLITE_PRIVATE int sqlite3ExprWalkNoop(Walker*, Expr*);
19083
19083
SQLITE_PRIVATE int sqlite3SelectWalkNoop(Walker*, Select*);
19084
19084
SQLITE_PRIVATE int sqlite3SelectWalkFail(Walker*, Select*);
19085
+ SQLITE_PRIVATE int sqlite3WalkerDepthIncrease(Walker*,Select*);
19086
+ SQLITE_PRIVATE void sqlite3WalkerDepthDecrease(Walker*,Select*);
19087
+
19085
19088
#ifdef SQLITE_DEBUG
19086
19089
SQLITE_PRIVATE void sqlite3SelectWalkAssert2(Walker*, Select*);
19087
19090
#endif
@@ -28276,6 +28279,13 @@ static char *printfTempBuf(sqlite3_str *pAccum, sqlite3_int64 n){
28276
28279
#endif
28277
28280
#define etBUFSIZE SQLITE_PRINT_BUF_SIZE /* Size of the output buffer */
28278
28281
28282
+ /*
28283
+ ** Hard limit on the precision of floating-point conversions.
28284
+ */
28285
+ #ifndef SQLITE_PRINTF_PRECISION_LIMIT
28286
+ # define SQLITE_FP_PRECISION_LIMIT 100000000
28287
+ #endif
28288
+
28279
28289
/*
28280
28290
** Render a string given by "fmt" into the StrAccum object.
28281
28291
*/
@@ -28476,6 +28486,8 @@ SQLITE_API void sqlite3_str_vappendf(
28476
28486
** xtype The class of the conversion.
28477
28487
** infop Pointer to the appropriate info struct.
28478
28488
*/
28489
+ assert( width>=0 );
28490
+ assert( precision>=(-1) );
28479
28491
switch( xtype ){
28480
28492
case etPOINTER:
28481
28493
flag_long = sizeof(char*)==sizeof(i64) ? 2 :
@@ -28597,6 +28609,11 @@ SQLITE_API void sqlite3_str_vappendf(
28597
28609
length = 0;
28598
28610
#else
28599
28611
if( precision<0 ) precision = 6; /* Set default precision */
28612
+ #ifdef SQLITE_FP_PRECISION_LIMIT
28613
+ if( precision>SQLITE_FP_PRECISION_LIMIT ){
28614
+ precision = SQLITE_FP_PRECISION_LIMIT;
28615
+ }
28616
+ #endif
28600
28617
if( realvalue<0.0 ){
28601
28618
realvalue = -realvalue;
28602
28619
prefix = '-';
@@ -28879,7 +28896,7 @@ SQLITE_API void sqlite3_str_vappendf(
28879
28896
}
28880
28897
isnull = escarg==0;
28881
28898
if( isnull ) escarg = (xtype==etSQLESCAPE2 ? "NULL" : "(NULL)");
28882
- /* For %q, %Q, and %w, the precision is the number of byte (or
28899
+ /* For %q, %Q, and %w, the precision is the number of bytes (or
28883
28900
** characters if the ! flags is present) to use from the input.
28884
28901
** Because of the extra quoting characters inserted, the number
28885
28902
** of output characters may be larger than the precision.
@@ -29964,8 +29981,9 @@ SQLITE_PRIVATE void sqlite3TreeViewExpr(TreeView *pView, const Expr *pExpr, u8 m
29964
29981
#endif
29965
29982
}
29966
29983
if( pExpr->op==TK_AGG_FUNCTION ){
29967
- sqlite3TreeViewLine(pView, "AGG_FUNCTION%d %Q%s",
29968
- pExpr->op2, pExpr->u.zToken, zFlgs);
29984
+ sqlite3TreeViewLine(pView, "AGG_FUNCTION%d %Q%s iAgg=%d agg=%p",
29985
+ pExpr->op2, pExpr->u.zToken, zFlgs,
29986
+ pExpr->iAgg, pExpr->pAggInfo);
29969
29987
}else if( pExpr->op2!=0 ){
29970
29988
const char *zOp2;
29971
29989
char zBuf[8];
@@ -62135,12 +62153,14 @@ SQLITE_PRIVATE int sqlite3WalSnapshotRecover(Wal *pWal){
62135
62153
SQLITE_PRIVATE int sqlite3WalBeginReadTransaction(Wal *pWal, int *pChanged){
62136
62154
int rc; /* Return code */
62137
62155
int cnt = 0; /* Number of TryBeginRead attempts */
62156
+ #ifdef SQLITE_ENABLE_SNAPSHOT
62157
+ int bChanged = 0;
62158
+ WalIndexHdr *pSnapshot = pWal->pSnapshot;
62159
+ #endif
62138
62160
62139
62161
assert( pWal->ckptLock==0 );
62140
62162
62141
62163
#ifdef SQLITE_ENABLE_SNAPSHOT
62142
- int bChanged = 0;
62143
- WalIndexHdr *pSnapshot = pWal->pSnapshot;
62144
62164
if( pSnapshot ){
62145
62165
if( memcmp(pSnapshot, &pWal->hdr, sizeof(WalIndexHdr))!=0 ){
62146
62166
bChanged = 1;
@@ -97465,6 +97485,43 @@ SQLITE_PRIVATE int sqlite3WalkSelect(Walker *pWalker, Select *p){
97465
97485
return WRC_Continue;
97466
97486
}
97467
97487
97488
+ /* Increase the walkerDepth when entering a subquery, and
97489
+ ** descrease when leaving the subquery.
97490
+ */
97491
+ SQLITE_PRIVATE int sqlite3WalkerDepthIncrease(Walker *pWalker, Select *pSelect){
97492
+ UNUSED_PARAMETER(pSelect);
97493
+ pWalker->walkerDepth++;
97494
+ return WRC_Continue;
97495
+ }
97496
+ SQLITE_PRIVATE void sqlite3WalkerDepthDecrease(Walker *pWalker, Select *pSelect){
97497
+ UNUSED_PARAMETER(pSelect);
97498
+ pWalker->walkerDepth--;
97499
+ }
97500
+
97501
+
97502
+ /*
97503
+ ** No-op routine for the parse-tree walker.
97504
+ **
97505
+ ** When this routine is the Walker.xExprCallback then expression trees
97506
+ ** are walked without any actions being taken at each node. Presumably,
97507
+ ** when this routine is used for Walker.xExprCallback then
97508
+ ** Walker.xSelectCallback is set to do something useful for every
97509
+ ** subquery in the parser tree.
97510
+ */
97511
+ SQLITE_PRIVATE int sqlite3ExprWalkNoop(Walker *NotUsed, Expr *NotUsed2){
97512
+ UNUSED_PARAMETER2(NotUsed, NotUsed2);
97513
+ return WRC_Continue;
97514
+ }
97515
+
97516
+ /*
97517
+ ** No-op routine for the parse-tree walker for SELECT statements.
97518
+ ** subquery in the parser tree.
97519
+ */
97520
+ SQLITE_PRIVATE int sqlite3SelectWalkNoop(Walker *NotUsed, Select *NotUsed2){
97521
+ UNUSED_PARAMETER2(NotUsed, NotUsed2);
97522
+ return WRC_Continue;
97523
+ }
97524
+
97468
97525
/************** End of walker.c **********************************************/
97469
97526
/************** Begin file resolve.c *****************************************/
97470
97527
/*
@@ -97493,6 +97550,8 @@ SQLITE_PRIVATE int sqlite3WalkSelect(Walker *pWalker, Select *p){
97493
97550
**
97494
97551
** incrAggFunctionDepth(pExpr,n) is the main routine. incrAggDepth(..)
97495
97552
** is a helper function - a callback for the tree walker.
97553
+ **
97554
+ ** See also the sqlite3WindowExtraAggFuncDepth() routine in window.c
97496
97555
*/
97497
97556
static int incrAggDepth(Walker *pWalker, Expr *pExpr){
97498
97557
if( pExpr->op==TK_AGG_FUNCTION ) pExpr->op2 += pWalker->u.n;
@@ -103234,7 +103293,10 @@ SQLITE_PRIVATE int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target)
103234
103293
switch( op ){
103235
103294
case TK_AGG_COLUMN: {
103236
103295
AggInfo *pAggInfo = pExpr->pAggInfo;
103237
- struct AggInfo_col *pCol = &pAggInfo->aCol[pExpr->iAgg];
103296
+ struct AggInfo_col *pCol;
103297
+ assert( pAggInfo!=0 );
103298
+ assert( pExpr->iAgg>=0 && pExpr->iAgg<pAggInfo->nColumn );
103299
+ pCol = &pAggInfo->aCol[pExpr->iAgg];
103238
103300
if( !pAggInfo->directMode ){
103239
103301
assert( pCol->iMem>0 );
103240
103302
return pCol->iMem;
@@ -103534,7 +103596,10 @@ SQLITE_PRIVATE int sqlite3ExprCodeTarget(Parse *pParse, Expr *pExpr, int target)
103534
103596
}
103535
103597
case TK_AGG_FUNCTION: {
103536
103598
AggInfo *pInfo = pExpr->pAggInfo;
103537
- if( pInfo==0 ){
103599
+ if( pInfo==0
103600
+ || NEVER(pExpr->iAgg<0)
103601
+ || NEVER(pExpr->iAgg>=pInfo->nFunc)
103602
+ ){
103538
103603
assert( !ExprHasProperty(pExpr, EP_IntValue) );
103539
103604
sqlite3ErrorMsg(pParse, "misuse of aggregate: %s()", pExpr->u.zToken);
103540
103605
}else{
@@ -105290,15 +105355,6 @@ static int analyzeAggregate(Walker *pWalker, Expr *pExpr){
105290
105355
}
105291
105356
return WRC_Continue;
105292
105357
}
105293
- static int analyzeAggregatesInSelect(Walker *pWalker, Select *pSelect){
105294
- UNUSED_PARAMETER(pSelect);
105295
- pWalker->walkerDepth++;
105296
- return WRC_Continue;
105297
- }
105298
- static void analyzeAggregatesInSelectEnd(Walker *pWalker, Select *pSelect){
105299
- UNUSED_PARAMETER(pSelect);
105300
- pWalker->walkerDepth--;
105301
- }
105302
105358
105303
105359
/*
105304
105360
** Analyze the pExpr expression looking for aggregate functions and
@@ -105312,8 +105368,8 @@ static void analyzeAggregatesInSelectEnd(Walker *pWalker, Select *pSelect){
105312
105368
SQLITE_PRIVATE void sqlite3ExprAnalyzeAggregates(NameContext *pNC, Expr *pExpr){
105313
105369
Walker w;
105314
105370
w.xExprCallback = analyzeAggregate;
105315
- w.xSelectCallback = analyzeAggregatesInSelect ;
105316
- w.xSelectCallback2 = analyzeAggregatesInSelectEnd ;
105371
+ w.xSelectCallback = sqlite3WalkerDepthIncrease ;
105372
+ w.xSelectCallback2 = sqlite3WalkerDepthDecrease ;
105317
105373
w.walkerDepth = 0;
105318
105374
w.u.pNC = pNC;
105319
105375
w.pParse = 0;
@@ -122035,7 +122091,7 @@ SQLITE_PRIVATE void sqlite3GenerateConstraintChecks(
122035
122091
sqlite3TableAffinity(v, pTab, regNewData+1);
122036
122092
bAffinityDone = 1;
122037
122093
}
122038
- VdbeNoopComment((v, "uniqueness check for %s", pIdx->zName));
122094
+ VdbeNoopComment((v, "prep index %s", pIdx->zName));
122039
122095
iThisCur = iIdxCur+ix;
122040
122096
122041
122097
@@ -128916,9 +128972,9 @@ SQLITE_PRIVATE Select *sqlite3SelectNew(
128916
128972
u32 selFlags, /* Flag parameters, such as SF_Distinct */
128917
128973
Expr *pLimit /* LIMIT value. NULL means not used */
128918
128974
){
128919
- Select *pNew, *pAllocated ;
128975
+ Select *pNew;
128920
128976
Select standin;
128921
- pAllocated = pNew = sqlite3DbMallocRawNN(pParse->db, sizeof(*pNew) );
128977
+ pNew = sqlite3DbMallocRawNN(pParse->db, sizeof(*pNew) );
128922
128978
if( pNew==0 ){
128923
128979
assert( pParse->db->mallocFailed );
128924
128980
pNew = &standin;
@@ -128952,11 +129008,12 @@ SQLITE_PRIVATE Select *sqlite3SelectNew(
128952
129008
#endif
128953
129009
if( pParse->db->mallocFailed ) {
128954
129010
clearSelect(pParse->db, pNew, pNew!=&standin);
128955
- pAllocated = 0;
129011
+ pNew = 0;
128956
129012
}else{
128957
129013
assert( pNew->pSrc!=0 || pParse->nErr>0 );
128958
129014
}
128959
- return pAllocated;
129015
+ assert( pNew!=&standin );
129016
+ return pNew;
128960
129017
}
128961
129018
128962
129019
@@ -134006,29 +134063,6 @@ static int selectExpander(Walker *pWalker, Select *p){
134006
134063
return WRC_Continue;
134007
134064
}
134008
134065
134009
- /*
134010
- ** No-op routine for the parse-tree walker.
134011
- **
134012
- ** When this routine is the Walker.xExprCallback then expression trees
134013
- ** are walked without any actions being taken at each node. Presumably,
134014
- ** when this routine is used for Walker.xExprCallback then
134015
- ** Walker.xSelectCallback is set to do something useful for every
134016
- ** subquery in the parser tree.
134017
- */
134018
- SQLITE_PRIVATE int sqlite3ExprWalkNoop(Walker *NotUsed, Expr *NotUsed2){
134019
- UNUSED_PARAMETER2(NotUsed, NotUsed2);
134020
- return WRC_Continue;
134021
- }
134022
-
134023
- /*
134024
- ** No-op routine for the parse-tree walker for SELECT statements.
134025
- ** subquery in the parser tree.
134026
- */
134027
- SQLITE_PRIVATE int sqlite3SelectWalkNoop(Walker *NotUsed, Select *NotUsed2){
134028
- UNUSED_PARAMETER2(NotUsed, NotUsed2);
134029
- return WRC_Continue;
134030
- }
134031
-
134032
134066
#if SQLITE_DEBUG
134033
134067
/*
134034
134068
** Always assert. This xSelectCallback2 implementation proves that the
@@ -135199,7 +135233,7 @@ SQLITE_PRIVATE int sqlite3Select(
135199
135233
#if SELECTTRACE_ENABLED
135200
135234
if( sqlite3SelectTrace & 0x400 ){
135201
135235
int ii;
135202
- SELECTTRACE(0x400,pParse,p,("After aggregate analysis:\n"));
135236
+ SELECTTRACE(0x400,pParse,p,("After aggregate analysis %p :\n", &sAggInfo ));
135203
135237
sqlite3TreeViewSelect(0, p, 0);
135204
135238
for(ii=0; ii<sAggInfo.nColumn; ii++){
135205
135239
sqlite3DebugPrintf("agg-column[%d] iMem=%d\n",
@@ -151243,6 +151277,23 @@ static ExprList *exprListAppendList(
151243
151277
return pList;
151244
151278
}
151245
151279
151280
+ /*
151281
+ ** When rewriting a query, if the new subquery in the FROM clause
151282
+ ** contains TK_AGG_FUNCTION nodes that refer to an outer query,
151283
+ ** then we have to increase the Expr->op2 values of those nodes
151284
+ ** due to the extra subquery layer that was added.
151285
+ **
151286
+ ** See also the incrAggDepth() routine in resolve.c
151287
+ */
151288
+ static int sqlite3WindowExtraAggFuncDepth(Walker *pWalker, Expr *pExpr){
151289
+ if( pExpr->op==TK_AGG_FUNCTION
151290
+ && pExpr->op2>=pWalker->walkerDepth
151291
+ ){
151292
+ pExpr->op2++;
151293
+ }
151294
+ return WRC_Continue;
151295
+ }
151296
+
151246
151297
/*
151247
151298
** If the SELECT statement passed as the second argument does not invoke
151248
151299
** any SQL window functions, this function is a no-op. Otherwise, it
@@ -151352,6 +151403,7 @@ SQLITE_PRIVATE int sqlite3WindowRewrite(Parse *pParse, Select *p){
151352
151403
p->pSrc = sqlite3SrcListAppend(pParse, 0, 0, 0);
151353
151404
if( p->pSrc ){
151354
151405
Table *pTab2;
151406
+ Walker w;
151355
151407
p->pSrc->a[0].pSelect = pSub;
151356
151408
sqlite3SrcListAssignCursors(pParse, p->pSrc);
151357
151409
pSub->selFlags |= SF_Expanded;
@@ -151367,6 +151419,11 @@ SQLITE_PRIVATE int sqlite3WindowRewrite(Parse *pParse, Select *p){
151367
151419
pTab->tabFlags |= TF_Ephemeral;
151368
151420
p->pSrc->a[0].pTab = pTab;
151369
151421
pTab = pTab2;
151422
+ memset(&w, 0, sizeof(w));
151423
+ w.xExprCallback = sqlite3WindowExtraAggFuncDepth;
151424
+ w.xSelectCallback = sqlite3WalkerDepthIncrease;
151425
+ w.xSelectCallback2 = sqlite3WalkerDepthDecrease;
151426
+ sqlite3WalkSelect(&w, pSub);
151370
151427
}
151371
151428
}else{
151372
151429
sqlite3SelectDelete(db, pSub);
@@ -224765,7 +224822,7 @@ static void fts5SourceIdFunc(
224765
224822
){
224766
224823
assert( nArg==0 );
224767
224824
UNUSED_PARAM2(nArg, apUnused);
224768
- sqlite3_result_text(pCtx, "fts5: 2020-05-22 17:46:16 5998789c9c744bce92e4cff7636bba800a75574243d6977e1fc8281e360f8d5a ", -1, SQLITE_TRANSIENT);
224825
+ sqlite3_result_text(pCtx, "fts5: 2020-05-25 16:19:56 0c1fcf4711a2e66c813aed38cf41cd3e2123ee8eb6db98118086764c4ba83350 ", -1, SQLITE_TRANSIENT);
224769
224826
}
224770
224827
224771
224828
/*
@@ -229548,9 +229605,9 @@ SQLITE_API int sqlite3_stmt_init(
229548
229605
#endif /* !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_STMTVTAB) */
229549
229606
229550
229607
/************** End of stmt.c ************************************************/
229551
- #if __LINE__!=229552
229608
+ #if __LINE__!=229608
229552
229609
#undef SQLITE_SOURCE_ID
229553
- #define SQLITE_SOURCE_ID "2020-05-22 17:46:16 5998789c9c744bce92e4cff7636bba800a75574243d6977e1fc8281e360falt2 "
229610
+ #define SQLITE_SOURCE_ID "2020-05-25 16:19:56 0c1fcf4711a2e66c813aed38cf41cd3e2123ee8eb6db98118086764c4ba8alt2 "
229554
229611
#endif
229555
229612
/* Return the source-id for this library */
229556
229613
SQLITE_API const char *sqlite3_sourceid(void){ return SQLITE_SOURCE_ID; }
0 commit comments