1 /* 2 ** 2018 May 08 3 ** 4 ** The author disclaims copyright to this source code. In place of 5 ** a legal notice, here is a blessing: 6 ** 7 ** May you do good and not evil. 8 ** May you find forgiveness for yourself and forgive others. 9 ** May you share freely, never taking more than you give. 10 ** 11 ************************************************************************* 12 */ 13 #include "sqliteInt.h" 14 15 #ifndef SQLITE_OMIT_WINDOWFUNC 16 17 /* 18 ** SELECT REWRITING 19 ** 20 ** Any SELECT statement that contains one or more window functions in 21 ** either the select list or ORDER BY clause (the only two places window 22 ** functions may be used) is transformed by function sqlite3WindowRewrite() 23 ** in order to support window function processing. For example, with the 24 ** schema: 25 ** 26 ** CREATE TABLE t1(a, b, c, d, e, f, g); 27 ** 28 ** the statement: 29 ** 30 ** SELECT a+1, max(b) OVER (PARTITION BY c ORDER BY d) FROM t1 ORDER BY e; 31 ** 32 ** is transformed to: 33 ** 34 ** SELECT a+1, max(b) OVER (PARTITION BY c ORDER BY d) FROM ( 35 ** SELECT a, e, c, d, b FROM t1 ORDER BY c, d 36 ** ) ORDER BY e; 37 ** 38 ** The flattening optimization is disabled when processing this transformed 39 ** SELECT statement. This allows the implementation of the window function 40 ** (in this case max()) to process rows sorted in order of (c, d), which 41 ** makes things easier for obvious reasons. More generally: 42 ** 43 ** * FROM, WHERE, GROUP BY and HAVING clauses are all moved to 44 ** the sub-query. 45 ** 46 ** * ORDER BY, LIMIT and OFFSET remain part of the parent query. 47 ** 48 ** * Terminals from each of the expression trees that make up the 49 ** select-list and ORDER BY expressions in the parent query are 50 ** selected by the sub-query. For the purposes of the transformation, 51 ** terminals are column references and aggregate functions. 52 ** 53 ** If there is more than one window function in the SELECT that uses 54 ** the same window declaration (the OVER bit), then a single scan may 55 ** be used to process more than one window function. For example: 56 ** 57 ** SELECT max(b) OVER (PARTITION BY c ORDER BY d), 58 ** min(e) OVER (PARTITION BY c ORDER BY d) 59 ** FROM t1; 60 ** 61 ** is transformed in the same way as the example above. However: 62 ** 63 ** SELECT max(b) OVER (PARTITION BY c ORDER BY d), 64 ** min(e) OVER (PARTITION BY a ORDER BY b) 65 ** FROM t1; 66 ** 67 ** Must be transformed to: 68 ** 69 ** SELECT max(b) OVER (PARTITION BY c ORDER BY d) FROM ( 70 ** SELECT e, min(e) OVER (PARTITION BY a ORDER BY b), c, d, b FROM 71 ** SELECT a, e, c, d, b FROM t1 ORDER BY a, b 72 ** ) ORDER BY c, d 73 ** ) ORDER BY e; 74 ** 75 ** so that both min() and max() may process rows in the order defined by 76 ** their respective window declarations. 77 ** 78 ** INTERFACE WITH SELECT.C 79 ** 80 ** When processing the rewritten SELECT statement, code in select.c calls 81 ** sqlite3WhereBegin() to begin iterating through the results of the 82 ** sub-query, which is always implemented as a co-routine. It then calls 83 ** sqlite3WindowCodeStep() to process rows and finish the scan by calling 84 ** sqlite3WhereEnd(). 85 ** 86 ** sqlite3WindowCodeStep() generates VM code so that, for each row returned 87 ** by the sub-query a sub-routine (OP_Gosub) coded by select.c is invoked. 88 ** When the sub-routine is invoked: 89 ** 90 ** * The results of all window-functions for the row are stored 91 ** in the associated Window.regResult registers. 92 ** 93 ** * The required terminal values are stored in the current row of 94 ** temp table Window.iEphCsr. 95 ** 96 ** In some cases, depending on the window frame and the specific window 97 ** functions invoked, sqlite3WindowCodeStep() caches each entire partition 98 ** in a temp table before returning any rows. In other cases it does not. 99 ** This detail is encapsulated within this file, the code generated by 100 ** select.c is the same in either case. 101 ** 102 ** BUILT-IN WINDOW FUNCTIONS 103 ** 104 ** This implementation features the following built-in window functions: 105 ** 106 ** row_number() 107 ** rank() 108 ** dense_rank() 109 ** percent_rank() 110 ** cume_dist() 111 ** ntile(N) 112 ** lead(expr [, offset [, default]]) 113 ** lag(expr [, offset [, default]]) 114 ** first_value(expr) 115 ** last_value(expr) 116 ** nth_value(expr, N) 117 ** 118 ** These are the same built-in window functions supported by Postgres. 119 ** Although the behaviour of aggregate window functions (functions that 120 ** can be used as either aggregates or window funtions) allows them to 121 ** be implemented using an API, built-in window functions are much more 122 ** esoteric. Additionally, some window functions (e.g. nth_value()) 123 ** may only be implemented by caching the entire partition in memory. 124 ** As such, some built-in window functions use the same API as aggregate 125 ** window functions and some are implemented directly using VDBE 126 ** instructions. Additionally, for those functions that use the API, the 127 ** window frame is sometimes modified before the SELECT statement is 128 ** rewritten. For example, regardless of the specified window frame, the 129 ** row_number() function always uses: 130 ** 131 ** ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 132 ** 133 ** See sqlite3WindowUpdate() for details. 134 ** 135 ** As well as some of the built-in window functions, aggregate window 136 ** functions min() and max() are implemented using VDBE instructions if 137 ** the start of the window frame is declared as anything other than 138 ** UNBOUNDED PRECEDING. 139 */ 140 141 /* 142 ** Implementation of built-in window function row_number(). Assumes that the 143 ** window frame has been coerced to: 144 ** 145 ** ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 146 */ 147 static void row_numberStepFunc( 148 sqlite3_context *pCtx, 149 int nArg, 150 sqlite3_value **apArg 151 ){ 152 i64 *p = (i64*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 153 if( p ) (*p)++; 154 UNUSED_PARAMETER(nArg); 155 UNUSED_PARAMETER(apArg); 156 } 157 static void row_numberValueFunc(sqlite3_context *pCtx){ 158 i64 *p = (i64*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 159 sqlite3_result_int64(pCtx, (p ? *p : 0)); 160 } 161 162 /* 163 ** Context object type used by rank(), dense_rank(), percent_rank() and 164 ** cume_dist(). 165 */ 166 struct CallCount { 167 i64 nValue; 168 i64 nStep; 169 i64 nTotal; 170 }; 171 172 /* 173 ** Implementation of built-in window function dense_rank(). Assumes that 174 ** the window frame has been set to: 175 ** 176 ** RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 177 */ 178 static void dense_rankStepFunc( 179 sqlite3_context *pCtx, 180 int nArg, 181 sqlite3_value **apArg 182 ){ 183 struct CallCount *p; 184 p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 185 if( p ) p->nStep = 1; 186 UNUSED_PARAMETER(nArg); 187 UNUSED_PARAMETER(apArg); 188 } 189 static void dense_rankValueFunc(sqlite3_context *pCtx){ 190 struct CallCount *p; 191 p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 192 if( p ){ 193 if( p->nStep ){ 194 p->nValue++; 195 p->nStep = 0; 196 } 197 sqlite3_result_int64(pCtx, p->nValue); 198 } 199 } 200 201 /* 202 ** Implementation of built-in window function rank(). Assumes that 203 ** the window frame has been set to: 204 ** 205 ** RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 206 */ 207 static void rankStepFunc( 208 sqlite3_context *pCtx, 209 int nArg, 210 sqlite3_value **apArg 211 ){ 212 struct CallCount *p; 213 p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 214 if( p ){ 215 p->nStep++; 216 if( p->nValue==0 ){ 217 p->nValue = p->nStep; 218 } 219 } 220 UNUSED_PARAMETER(nArg); 221 UNUSED_PARAMETER(apArg); 222 } 223 static void rankValueFunc(sqlite3_context *pCtx){ 224 struct CallCount *p; 225 p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 226 if( p ){ 227 sqlite3_result_int64(pCtx, p->nValue); 228 p->nValue = 0; 229 } 230 } 231 232 /* 233 ** Implementation of built-in window function percent_rank(). Assumes that 234 ** the window frame has been set to: 235 ** 236 ** RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 237 */ 238 static void percent_rankStepFunc( 239 sqlite3_context *pCtx, 240 int nArg, 241 sqlite3_value **apArg 242 ){ 243 struct CallCount *p; 244 UNUSED_PARAMETER(nArg); assert( nArg==1 ); 245 246 p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 247 if( p ){ 248 if( p->nTotal==0 ){ 249 p->nTotal = sqlite3_value_int64(apArg[0]); 250 } 251 p->nStep++; 252 if( p->nValue==0 ){ 253 p->nValue = p->nStep; 254 } 255 } 256 } 257 static void percent_rankValueFunc(sqlite3_context *pCtx){ 258 struct CallCount *p; 259 p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 260 if( p ){ 261 if( p->nTotal>1 ){ 262 double r = (double)(p->nValue-1) / (double)(p->nTotal-1); 263 sqlite3_result_double(pCtx, r); 264 }else{ 265 sqlite3_result_double(pCtx, 0.0); 266 } 267 p->nValue = 0; 268 } 269 } 270 271 /* 272 ** Implementation of built-in window function cume_dist(). Assumes that 273 ** the window frame has been set to: 274 ** 275 ** RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 276 */ 277 static void cume_distStepFunc( 278 sqlite3_context *pCtx, 279 int nArg, 280 sqlite3_value **apArg 281 ){ 282 struct CallCount *p; 283 assert( nArg==1 ); UNUSED_PARAMETER(nArg); 284 285 p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 286 if( p ){ 287 if( p->nTotal==0 ){ 288 p->nTotal = sqlite3_value_int64(apArg[0]); 289 } 290 p->nStep++; 291 } 292 } 293 static void cume_distValueFunc(sqlite3_context *pCtx){ 294 struct CallCount *p; 295 p = (struct CallCount*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 296 if( p && p->nTotal ){ 297 double r = (double)(p->nStep) / (double)(p->nTotal); 298 sqlite3_result_double(pCtx, r); 299 } 300 } 301 302 /* 303 ** Context object for ntile() window function. 304 */ 305 struct NtileCtx { 306 i64 nTotal; /* Total rows in partition */ 307 i64 nParam; /* Parameter passed to ntile(N) */ 308 i64 iRow; /* Current row */ 309 }; 310 311 /* 312 ** Implementation of ntile(). This assumes that the window frame has 313 ** been coerced to: 314 ** 315 ** ROWS UNBOUNDED PRECEDING AND CURRENT ROW 316 */ 317 static void ntileStepFunc( 318 sqlite3_context *pCtx, 319 int nArg, 320 sqlite3_value **apArg 321 ){ 322 struct NtileCtx *p; 323 assert( nArg==2 ); UNUSED_PARAMETER(nArg); 324 p = (struct NtileCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 325 if( p ){ 326 if( p->nTotal==0 ){ 327 p->nParam = sqlite3_value_int64(apArg[0]); 328 p->nTotal = sqlite3_value_int64(apArg[1]); 329 if( p->nParam<=0 ){ 330 sqlite3_result_error( 331 pCtx, "argument of ntile must be a positive integer", -1 332 ); 333 } 334 } 335 p->iRow++; 336 } 337 } 338 static void ntileValueFunc(sqlite3_context *pCtx){ 339 struct NtileCtx *p; 340 p = (struct NtileCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 341 if( p && p->nParam>0 ){ 342 int nSize = (p->nTotal / p->nParam); 343 if( nSize==0 ){ 344 sqlite3_result_int64(pCtx, p->iRow); 345 }else{ 346 i64 nLarge = p->nTotal - p->nParam*nSize; 347 i64 iSmall = nLarge*(nSize+1); 348 i64 iRow = p->iRow-1; 349 350 assert( (nLarge*(nSize+1) + (p->nParam-nLarge)*nSize)==p->nTotal ); 351 352 if( iRow<iSmall ){ 353 sqlite3_result_int64(pCtx, 1 + iRow/(nSize+1)); 354 }else{ 355 sqlite3_result_int64(pCtx, 1 + nLarge + (iRow-iSmall)/nSize); 356 } 357 } 358 } 359 } 360 361 /* 362 ** Context object for last_value() window function. 363 */ 364 struct LastValueCtx { 365 sqlite3_value *pVal; 366 int nVal; 367 }; 368 369 /* 370 ** Implementation of last_value(). 371 */ 372 static void last_valueStepFunc( 373 sqlite3_context *pCtx, 374 int nArg, 375 sqlite3_value **apArg 376 ){ 377 struct LastValueCtx *p; 378 UNUSED_PARAMETER(nArg); 379 p = (struct LastValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 380 if( p ){ 381 sqlite3_value_free(p->pVal); 382 p->pVal = sqlite3_value_dup(apArg[0]); 383 if( p->pVal==0 ){ 384 sqlite3_result_error_nomem(pCtx); 385 }else{ 386 p->nVal++; 387 } 388 } 389 } 390 static void last_valueInvFunc( 391 sqlite3_context *pCtx, 392 int nArg, 393 sqlite3_value **apArg 394 ){ 395 struct LastValueCtx *p; 396 UNUSED_PARAMETER(nArg); 397 UNUSED_PARAMETER(apArg); 398 p = (struct LastValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 399 if( ALWAYS(p) ){ 400 p->nVal--; 401 if( p->nVal==0 ){ 402 sqlite3_value_free(p->pVal); 403 p->pVal = 0; 404 } 405 } 406 } 407 static void last_valueValueFunc(sqlite3_context *pCtx){ 408 struct LastValueCtx *p; 409 p = (struct LastValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 410 if( p && p->pVal ){ 411 sqlite3_result_value(pCtx, p->pVal); 412 } 413 } 414 static void last_valueFinalizeFunc(sqlite3_context *pCtx){ 415 struct LastValueCtx *p; 416 p = (struct LastValueCtx*)sqlite3_aggregate_context(pCtx, sizeof(*p)); 417 if( p && p->pVal ){ 418 sqlite3_result_value(pCtx, p->pVal); 419 sqlite3_value_free(p->pVal); 420 p->pVal = 0; 421 } 422 } 423 424 /* 425 ** Static names for the built-in window function names. These static 426 ** names are used, rather than string literals, so that FuncDef objects 427 ** can be associated with a particular window function by direct 428 ** comparison of the zName pointer. Example: 429 ** 430 ** if( pFuncDef->zName==row_valueName ){ ... } 431 */ 432 static const char row_numberName[] = "row_number"; 433 static const char dense_rankName[] = "dense_rank"; 434 static const char rankName[] = "rank"; 435 static const char percent_rankName[] = "percent_rank"; 436 static const char cume_distName[] = "cume_dist"; 437 static const char ntileName[] = "ntile"; 438 static const char last_valueName[] = "last_value"; 439 static const char nth_valueName[] = "nth_value"; 440 static const char first_valueName[] = "first_value"; 441 static const char leadName[] = "lead"; 442 static const char lagName[] = "lag"; 443 444 /* 445 ** No-op implementations of xStep() and xFinalize(). Used as place-holders 446 ** for built-in window functions that never call those interfaces. 447 ** 448 ** The noopValueFunc() is called but is expected to do nothing. The 449 ** noopStepFunc() is never called, and so it is marked with NO_TEST to 450 ** let the test coverage routine know not to expect this function to be 451 ** invoked. 452 */ 453 static void noopStepFunc( /*NO_TEST*/ 454 sqlite3_context *p, /*NO_TEST*/ 455 int n, /*NO_TEST*/ 456 sqlite3_value **a /*NO_TEST*/ 457 ){ /*NO_TEST*/ 458 UNUSED_PARAMETER(p); /*NO_TEST*/ 459 UNUSED_PARAMETER(n); /*NO_TEST*/ 460 UNUSED_PARAMETER(a); /*NO_TEST*/ 461 assert(0); /*NO_TEST*/ 462 } /*NO_TEST*/ 463 static void noopValueFunc(sqlite3_context *p){ UNUSED_PARAMETER(p); /*no-op*/ } 464 465 /* Window functions that use all window interfaces: xStep, xFinal, 466 ** xValue, and xInverse */ 467 #define WINDOWFUNCALL(name,nArg,extra) { \ 468 nArg, (SQLITE_UTF8|SQLITE_FUNC_WINDOW|extra), 0, 0, \ 469 name ## StepFunc, name ## FinalizeFunc, name ## ValueFunc, \ 470 name ## InvFunc, name ## Name, {0} \ 471 } 472 473 /* Window functions that are implemented using bytecode and thus have 474 ** no-op routines for their methods */ 475 #define WINDOWFUNCNOOP(name,nArg,extra) { \ 476 nArg, (SQLITE_UTF8|SQLITE_FUNC_WINDOW|extra), 0, 0, \ 477 noopStepFunc, noopValueFunc, noopValueFunc, \ 478 noopStepFunc, name ## Name, {0} \ 479 } 480 481 /* Window functions that use all window interfaces: xStep, the 482 ** same routine for xFinalize and xValue and which never call 483 ** xInverse. */ 484 #define WINDOWFUNCX(name,nArg,extra) { \ 485 nArg, (SQLITE_UTF8|SQLITE_FUNC_WINDOW|extra), 0, 0, \ 486 name ## StepFunc, name ## ValueFunc, name ## ValueFunc, \ 487 noopStepFunc, name ## Name, {0} \ 488 } 489 490 491 /* 492 ** Register those built-in window functions that are not also aggregates. 493 */ 494 void sqlite3WindowFunctions(void){ 495 static FuncDef aWindowFuncs[] = { 496 WINDOWFUNCX(row_number, 0, 0), 497 WINDOWFUNCX(dense_rank, 0, 0), 498 WINDOWFUNCX(rank, 0, 0), 499 WINDOWFUNCX(percent_rank, 0, SQLITE_FUNC_WINDOW_SIZE), 500 WINDOWFUNCX(cume_dist, 0, SQLITE_FUNC_WINDOW_SIZE), 501 WINDOWFUNCX(ntile, 1, SQLITE_FUNC_WINDOW_SIZE), 502 WINDOWFUNCALL(last_value, 1, 0), 503 WINDOWFUNCNOOP(nth_value, 2, 0), 504 WINDOWFUNCNOOP(first_value, 1, 0), 505 WINDOWFUNCNOOP(lead, 1, 0), 506 WINDOWFUNCNOOP(lead, 2, 0), 507 WINDOWFUNCNOOP(lead, 3, 0), 508 WINDOWFUNCNOOP(lag, 1, 0), 509 WINDOWFUNCNOOP(lag, 2, 0), 510 WINDOWFUNCNOOP(lag, 3, 0), 511 }; 512 sqlite3InsertBuiltinFuncs(aWindowFuncs, ArraySize(aWindowFuncs)); 513 } 514 515 /* 516 ** This function is called immediately after resolving the function name 517 ** for a window function within a SELECT statement. Argument pList is a 518 ** linked list of WINDOW definitions for the current SELECT statement. 519 ** Argument pFunc is the function definition just resolved and pWin 520 ** is the Window object representing the associated OVER clause. This 521 ** function updates the contents of pWin as follows: 522 ** 523 ** * If the OVER clause refered to a named window (as in "max(x) OVER win"), 524 ** search list pList for a matching WINDOW definition, and update pWin 525 ** accordingly. If no such WINDOW clause can be found, leave an error 526 ** in pParse. 527 ** 528 ** * If the function is a built-in window function that requires the 529 ** window to be coerced (see "BUILT-IN WINDOW FUNCTIONS" at the top 530 ** of this file), pWin is updated here. 531 */ 532 void sqlite3WindowUpdate( 533 Parse *pParse, 534 Window *pList, /* List of named windows for this SELECT */ 535 Window *pWin, /* Window frame to update */ 536 FuncDef *pFunc /* Window function definition */ 537 ){ 538 if( pWin->zName && pWin->eType==0 ){ 539 Window *p; 540 for(p=pList; p; p=p->pNextWin){ 541 if( sqlite3StrICmp(p->zName, pWin->zName)==0 ) break; 542 } 543 if( p==0 ){ 544 sqlite3ErrorMsg(pParse, "no such window: %s", pWin->zName); 545 return; 546 } 547 pWin->pPartition = sqlite3ExprListDup(pParse->db, p->pPartition, 0); 548 pWin->pOrderBy = sqlite3ExprListDup(pParse->db, p->pOrderBy, 0); 549 pWin->pStart = sqlite3ExprDup(pParse->db, p->pStart, 0); 550 pWin->pEnd = sqlite3ExprDup(pParse->db, p->pEnd, 0); 551 pWin->eStart = p->eStart; 552 pWin->eEnd = p->eEnd; 553 pWin->eType = p->eType; 554 } 555 if( pFunc->funcFlags & SQLITE_FUNC_WINDOW ){ 556 sqlite3 *db = pParse->db; 557 if( pWin->pFilter ){ 558 sqlite3ErrorMsg(pParse, 559 "FILTER clause may only be used with aggregate window functions" 560 ); 561 }else 562 if( pFunc->zName==row_numberName || pFunc->zName==ntileName ){ 563 sqlite3ExprDelete(db, pWin->pStart); 564 sqlite3ExprDelete(db, pWin->pEnd); 565 pWin->pStart = pWin->pEnd = 0; 566 pWin->eType = TK_ROWS; 567 pWin->eStart = TK_UNBOUNDED; 568 pWin->eEnd = TK_CURRENT; 569 }else 570 571 if( pFunc->zName==dense_rankName || pFunc->zName==rankName 572 || pFunc->zName==percent_rankName || pFunc->zName==cume_distName 573 ){ 574 sqlite3ExprDelete(db, pWin->pStart); 575 sqlite3ExprDelete(db, pWin->pEnd); 576 pWin->pStart = pWin->pEnd = 0; 577 pWin->eType = TK_RANGE; 578 pWin->eStart = TK_UNBOUNDED; 579 pWin->eEnd = TK_CURRENT; 580 } 581 } 582 pWin->pFunc = pFunc; 583 } 584 585 /* 586 ** Context object passed through sqlite3WalkExprList() to 587 ** selectWindowRewriteExprCb() by selectWindowRewriteEList(). 588 */ 589 typedef struct WindowRewrite WindowRewrite; 590 struct WindowRewrite { 591 Window *pWin; 592 SrcList *pSrc; 593 ExprList *pSub; 594 Select *pSubSelect; /* Current sub-select, if any */ 595 }; 596 597 /* 598 ** Callback function used by selectWindowRewriteEList(). If necessary, 599 ** this function appends to the output expression-list and updates 600 ** expression (*ppExpr) in place. 601 */ 602 static int selectWindowRewriteExprCb(Walker *pWalker, Expr *pExpr){ 603 struct WindowRewrite *p = pWalker->u.pRewrite; 604 Parse *pParse = pWalker->pParse; 605 606 /* If this function is being called from within a scalar sub-select 607 ** that used by the SELECT statement being processed, only process 608 ** TK_COLUMN expressions that refer to it (the outer SELECT). Do 609 ** not process aggregates or window functions at all, as they belong 610 ** to the scalar sub-select. */ 611 if( p->pSubSelect ){ 612 if( pExpr->op!=TK_COLUMN ){ 613 return WRC_Continue; 614 }else{ 615 int nSrc = p->pSrc->nSrc; 616 int i; 617 for(i=0; i<nSrc; i++){ 618 if( pExpr->iTable==p->pSrc->a[i].iCursor ) break; 619 } 620 if( i==nSrc ) return WRC_Continue; 621 } 622 } 623 624 switch( pExpr->op ){ 625 626 case TK_FUNCTION: 627 if( !ExprHasProperty(pExpr, EP_WinFunc) ){ 628 break; 629 }else{ 630 Window *pWin; 631 for(pWin=p->pWin; pWin; pWin=pWin->pNextWin){ 632 if( pExpr->y.pWin==pWin ){ 633 assert( pWin->pOwner==pExpr ); 634 return WRC_Prune; 635 } 636 } 637 } 638 /* Fall through. */ 639 640 case TK_AGG_FUNCTION: 641 case TK_COLUMN: { 642 Expr *pDup = sqlite3ExprDup(pParse->db, pExpr, 0); 643 p->pSub = sqlite3ExprListAppend(pParse, p->pSub, pDup); 644 if( p->pSub ){ 645 assert( ExprHasProperty(pExpr, EP_Static)==0 ); 646 ExprSetProperty(pExpr, EP_Static); 647 sqlite3ExprDelete(pParse->db, pExpr); 648 ExprClearProperty(pExpr, EP_Static); 649 memset(pExpr, 0, sizeof(Expr)); 650 651 pExpr->op = TK_COLUMN; 652 pExpr->iColumn = p->pSub->nExpr-1; 653 pExpr->iTable = p->pWin->iEphCsr; 654 } 655 656 break; 657 } 658 659 default: /* no-op */ 660 break; 661 } 662 663 return WRC_Continue; 664 } 665 static int selectWindowRewriteSelectCb(Walker *pWalker, Select *pSelect){ 666 struct WindowRewrite *p = pWalker->u.pRewrite; 667 Select *pSave = p->pSubSelect; 668 if( pSave==pSelect ){ 669 return WRC_Continue; 670 }else{ 671 p->pSubSelect = pSelect; 672 sqlite3WalkSelect(pWalker, pSelect); 673 p->pSubSelect = pSave; 674 } 675 return WRC_Prune; 676 } 677 678 679 /* 680 ** Iterate through each expression in expression-list pEList. For each: 681 ** 682 ** * TK_COLUMN, 683 ** * aggregate function, or 684 ** * window function with a Window object that is not a member of the 685 ** Window list passed as the second argument (pWin). 686 ** 687 ** Append the node to output expression-list (*ppSub). And replace it 688 ** with a TK_COLUMN that reads the (N-1)th element of table 689 ** pWin->iEphCsr, where N is the number of elements in (*ppSub) after 690 ** appending the new one. 691 */ 692 static void selectWindowRewriteEList( 693 Parse *pParse, 694 Window *pWin, 695 SrcList *pSrc, 696 ExprList *pEList, /* Rewrite expressions in this list */ 697 ExprList **ppSub /* IN/OUT: Sub-select expression-list */ 698 ){ 699 Walker sWalker; 700 WindowRewrite sRewrite; 701 702 memset(&sWalker, 0, sizeof(Walker)); 703 memset(&sRewrite, 0, sizeof(WindowRewrite)); 704 705 sRewrite.pSub = *ppSub; 706 sRewrite.pWin = pWin; 707 sRewrite.pSrc = pSrc; 708 709 sWalker.pParse = pParse; 710 sWalker.xExprCallback = selectWindowRewriteExprCb; 711 sWalker.xSelectCallback = selectWindowRewriteSelectCb; 712 sWalker.u.pRewrite = &sRewrite; 713 714 (void)sqlite3WalkExprList(&sWalker, pEList); 715 716 *ppSub = sRewrite.pSub; 717 } 718 719 /* 720 ** Append a copy of each expression in expression-list pAppend to 721 ** expression list pList. Return a pointer to the result list. 722 */ 723 static ExprList *exprListAppendList( 724 Parse *pParse, /* Parsing context */ 725 ExprList *pList, /* List to which to append. Might be NULL */ 726 ExprList *pAppend /* List of values to append. Might be NULL */ 727 ){ 728 if( pAppend ){ 729 int i; 730 int nInit = pList ? pList->nExpr : 0; 731 for(i=0; i<pAppend->nExpr; i++){ 732 Expr *pDup = sqlite3ExprDup(pParse->db, pAppend->a[i].pExpr, 0); 733 pList = sqlite3ExprListAppend(pParse, pList, pDup); 734 if( pList ) pList->a[nInit+i].sortOrder = pAppend->a[i].sortOrder; 735 } 736 } 737 return pList; 738 } 739 740 /* 741 ** If the SELECT statement passed as the second argument does not invoke 742 ** any SQL window functions, this function is a no-op. Otherwise, it 743 ** rewrites the SELECT statement so that window function xStep functions 744 ** are invoked in the correct order as described under "SELECT REWRITING" 745 ** at the top of this file. 746 */ 747 int sqlite3WindowRewrite(Parse *pParse, Select *p){ 748 int rc = SQLITE_OK; 749 if( p->pWin && p->pPrior==0 ){ 750 Vdbe *v = sqlite3GetVdbe(pParse); 751 sqlite3 *db = pParse->db; 752 Select *pSub = 0; /* The subquery */ 753 SrcList *pSrc = p->pSrc; 754 Expr *pWhere = p->pWhere; 755 ExprList *pGroupBy = p->pGroupBy; 756 Expr *pHaving = p->pHaving; 757 ExprList *pSort = 0; 758 759 ExprList *pSublist = 0; /* Expression list for sub-query */ 760 Window *pMWin = p->pWin; /* Master window object */ 761 Window *pWin; /* Window object iterator */ 762 763 p->pSrc = 0; 764 p->pWhere = 0; 765 p->pGroupBy = 0; 766 p->pHaving = 0; 767 768 /* Create the ORDER BY clause for the sub-select. This is the concatenation 769 ** of the window PARTITION and ORDER BY clauses. Then, if this makes it 770 ** redundant, remove the ORDER BY from the parent SELECT. */ 771 pSort = sqlite3ExprListDup(db, pMWin->pPartition, 0); 772 pSort = exprListAppendList(pParse, pSort, pMWin->pOrderBy); 773 if( pSort && p->pOrderBy ){ 774 if( sqlite3ExprListCompare(pSort, p->pOrderBy, -1)==0 ){ 775 sqlite3ExprListDelete(db, p->pOrderBy); 776 p->pOrderBy = 0; 777 } 778 } 779 780 /* Assign a cursor number for the ephemeral table used to buffer rows. 781 ** The OpenEphemeral instruction is coded later, after it is known how 782 ** many columns the table will have. */ 783 pMWin->iEphCsr = pParse->nTab++; 784 785 selectWindowRewriteEList(pParse, pMWin, pSrc, p->pEList, &pSublist); 786 selectWindowRewriteEList(pParse, pMWin, pSrc, p->pOrderBy, &pSublist); 787 pMWin->nBufferCol = (pSublist ? pSublist->nExpr : 0); 788 789 /* Append the PARTITION BY and ORDER BY expressions to the to the 790 ** sub-select expression list. They are required to figure out where 791 ** boundaries for partitions and sets of peer rows lie. */ 792 pSublist = exprListAppendList(pParse, pSublist, pMWin->pPartition); 793 pSublist = exprListAppendList(pParse, pSublist, pMWin->pOrderBy); 794 795 /* Append the arguments passed to each window function to the 796 ** sub-select expression list. Also allocate two registers for each 797 ** window function - one for the accumulator, another for interim 798 ** results. */ 799 for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ 800 pWin->iArgCol = (pSublist ? pSublist->nExpr : 0); 801 pSublist = exprListAppendList(pParse, pSublist, pWin->pOwner->x.pList); 802 if( pWin->pFilter ){ 803 Expr *pFilter = sqlite3ExprDup(db, pWin->pFilter, 0); 804 pSublist = sqlite3ExprListAppend(pParse, pSublist, pFilter); 805 } 806 pWin->regAccum = ++pParse->nMem; 807 pWin->regResult = ++pParse->nMem; 808 sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regAccum); 809 } 810 811 /* If there is no ORDER BY or PARTITION BY clause, and the window 812 ** function accepts zero arguments, and there are no other columns 813 ** selected (e.g. "SELECT row_number() OVER () FROM t1"), it is possible 814 ** that pSublist is still NULL here. Add a constant expression here to 815 ** keep everything legal in this case. 816 */ 817 if( pSublist==0 ){ 818 pSublist = sqlite3ExprListAppend(pParse, 0, 819 sqlite3ExprAlloc(db, TK_INTEGER, &sqlite3IntTokens[0], 0) 820 ); 821 } 822 823 pSub = sqlite3SelectNew( 824 pParse, pSublist, pSrc, pWhere, pGroupBy, pHaving, pSort, 0, 0 825 ); 826 p->pSrc = sqlite3SrcListAppend(pParse, 0, 0, 0); 827 if( p->pSrc ){ 828 p->pSrc->a[0].pSelect = pSub; 829 sqlite3SrcListAssignCursors(pParse, p->pSrc); 830 if( sqlite3ExpandSubquery(pParse, &p->pSrc->a[0]) ){ 831 rc = SQLITE_NOMEM; 832 }else{ 833 pSub->selFlags |= SF_Expanded; 834 p->selFlags &= ~SF_Aggregate; 835 sqlite3SelectPrep(pParse, pSub, 0); 836 } 837 838 sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pMWin->iEphCsr, pSublist->nExpr); 839 }else{ 840 sqlite3SelectDelete(db, pSub); 841 } 842 if( db->mallocFailed ) rc = SQLITE_NOMEM; 843 } 844 845 return rc; 846 } 847 848 /* 849 ** Free the Window object passed as the second argument. 850 */ 851 void sqlite3WindowDelete(sqlite3 *db, Window *p){ 852 if( p ){ 853 sqlite3ExprDelete(db, p->pFilter); 854 sqlite3ExprListDelete(db, p->pPartition); 855 sqlite3ExprListDelete(db, p->pOrderBy); 856 sqlite3ExprDelete(db, p->pEnd); 857 sqlite3ExprDelete(db, p->pStart); 858 sqlite3DbFree(db, p->zName); 859 sqlite3DbFree(db, p); 860 } 861 } 862 863 /* 864 ** Free the linked list of Window objects starting at the second argument. 865 */ 866 void sqlite3WindowListDelete(sqlite3 *db, Window *p){ 867 while( p ){ 868 Window *pNext = p->pNextWin; 869 sqlite3WindowDelete(db, p); 870 p = pNext; 871 } 872 } 873 874 /* 875 ** The argument expression is an PRECEDING or FOLLOWING offset. The 876 ** value should be a non-negative integer. If the value is not a 877 ** constant, change it to NULL. The fact that it is then a non-negative 878 ** integer will be caught later. But it is important not to leave 879 ** variable values in the expression tree. 880 */ 881 static Expr *sqlite3WindowOffsetExpr(Parse *pParse, Expr *pExpr){ 882 if( 0==sqlite3ExprIsConstant(pExpr) ){ 883 if( IN_RENAME_OBJECT ) sqlite3RenameExprUnmap(pParse, pExpr); 884 sqlite3ExprDelete(pParse->db, pExpr); 885 pExpr = sqlite3ExprAlloc(pParse->db, TK_NULL, 0, 0); 886 } 887 return pExpr; 888 } 889 890 /* 891 ** Allocate and return a new Window object describing a Window Definition. 892 */ 893 Window *sqlite3WindowAlloc( 894 Parse *pParse, /* Parsing context */ 895 int eType, /* Frame type. TK_RANGE or TK_ROWS */ 896 int eStart, /* Start type: CURRENT, PRECEDING, FOLLOWING, UNBOUNDED */ 897 Expr *pStart, /* Start window size if TK_PRECEDING or FOLLOWING */ 898 int eEnd, /* End type: CURRENT, FOLLOWING, TK_UNBOUNDED, PRECEDING */ 899 Expr *pEnd /* End window size if TK_FOLLOWING or PRECEDING */ 900 ){ 901 Window *pWin = 0; 902 903 /* Parser assures the following: */ 904 assert( eType==TK_RANGE || eType==TK_ROWS ); 905 assert( eStart==TK_CURRENT || eStart==TK_PRECEDING 906 || eStart==TK_UNBOUNDED || eStart==TK_FOLLOWING ); 907 assert( eEnd==TK_CURRENT || eEnd==TK_FOLLOWING 908 || eEnd==TK_UNBOUNDED || eEnd==TK_PRECEDING ); 909 assert( (eStart==TK_PRECEDING || eStart==TK_FOLLOWING)==(pStart!=0) ); 910 assert( (eEnd==TK_FOLLOWING || eEnd==TK_PRECEDING)==(pEnd!=0) ); 911 912 913 /* If a frame is declared "RANGE" (not "ROWS"), then it may not use 914 ** either "<expr> PRECEDING" or "<expr> FOLLOWING". 915 */ 916 if( eType==TK_RANGE && (pStart!=0 || pEnd!=0) ){ 917 sqlite3ErrorMsg(pParse, "RANGE must use only UNBOUNDED or CURRENT ROW"); 918 goto windowAllocErr; 919 } 920 921 /* Additionally, the 922 ** starting boundary type may not occur earlier in the following list than 923 ** the ending boundary type: 924 ** 925 ** UNBOUNDED PRECEDING 926 ** <expr> PRECEDING 927 ** CURRENT ROW 928 ** <expr> FOLLOWING 929 ** UNBOUNDED FOLLOWING 930 ** 931 ** The parser ensures that "UNBOUNDED PRECEDING" cannot be used as an ending 932 ** boundary, and than "UNBOUNDED FOLLOWING" cannot be used as a starting 933 ** frame boundary. 934 */ 935 if( (eStart==TK_CURRENT && eEnd==TK_PRECEDING) 936 || (eStart==TK_FOLLOWING && (eEnd==TK_PRECEDING || eEnd==TK_CURRENT)) 937 ){ 938 sqlite3ErrorMsg(pParse, "unsupported frame delimiter for ROWS"); 939 goto windowAllocErr; 940 } 941 942 pWin = (Window*)sqlite3DbMallocZero(pParse->db, sizeof(Window)); 943 if( pWin==0 ) goto windowAllocErr; 944 pWin->eType = eType; 945 pWin->eStart = eStart; 946 pWin->eEnd = eEnd; 947 pWin->pEnd = sqlite3WindowOffsetExpr(pParse, pEnd); 948 pWin->pStart = sqlite3WindowOffsetExpr(pParse, pStart); 949 return pWin; 950 951 windowAllocErr: 952 sqlite3ExprDelete(pParse->db, pEnd); 953 sqlite3ExprDelete(pParse->db, pStart); 954 return 0; 955 } 956 957 /* 958 ** Attach window object pWin to expression p. 959 */ 960 void sqlite3WindowAttach(Parse *pParse, Expr *p, Window *pWin){ 961 if( p ){ 962 assert( p->op==TK_FUNCTION ); 963 /* This routine is only called for the parser. If pWin was not 964 ** allocated due to an OOM, then the parser would fail before ever 965 ** invoking this routine */ 966 if( ALWAYS(pWin) ){ 967 p->y.pWin = pWin; 968 ExprSetProperty(p, EP_WinFunc); 969 pWin->pOwner = p; 970 if( p->flags & EP_Distinct ){ 971 sqlite3ErrorMsg(pParse, 972 "DISTINCT is not supported for window functions"); 973 } 974 } 975 }else{ 976 sqlite3WindowDelete(pParse->db, pWin); 977 } 978 } 979 980 /* 981 ** Return 0 if the two window objects are identical, or non-zero otherwise. 982 ** Identical window objects can be processed in a single scan. 983 */ 984 int sqlite3WindowCompare(Parse *pParse, Window *p1, Window *p2){ 985 if( p1->eType!=p2->eType ) return 1; 986 if( p1->eStart!=p2->eStart ) return 1; 987 if( p1->eEnd!=p2->eEnd ) return 1; 988 if( sqlite3ExprCompare(pParse, p1->pStart, p2->pStart, -1) ) return 1; 989 if( sqlite3ExprCompare(pParse, p1->pEnd, p2->pEnd, -1) ) return 1; 990 if( sqlite3ExprListCompare(p1->pPartition, p2->pPartition, -1) ) return 1; 991 if( sqlite3ExprListCompare(p1->pOrderBy, p2->pOrderBy, -1) ) return 1; 992 return 0; 993 } 994 995 996 /* 997 ** This is called by code in select.c before it calls sqlite3WhereBegin() 998 ** to begin iterating through the sub-query results. It is used to allocate 999 ** and initialize registers and cursors used by sqlite3WindowCodeStep(). 1000 */ 1001 void sqlite3WindowCodeInit(Parse *pParse, Window *pMWin){ 1002 Window *pWin; 1003 Vdbe *v = sqlite3GetVdbe(pParse); 1004 int nPart = (pMWin->pPartition ? pMWin->pPartition->nExpr : 0); 1005 nPart += (pMWin->pOrderBy ? pMWin->pOrderBy->nExpr : 0); 1006 if( nPart ){ 1007 pMWin->regPart = pParse->nMem+1; 1008 pParse->nMem += nPart; 1009 sqlite3VdbeAddOp3(v, OP_Null, 0, pMWin->regPart, pMWin->regPart+nPart-1); 1010 } 1011 1012 for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ 1013 FuncDef *p = pWin->pFunc; 1014 if( (p->funcFlags & SQLITE_FUNC_MINMAX) && pWin->eStart!=TK_UNBOUNDED ){ 1015 /* The inline versions of min() and max() require a single ephemeral 1016 ** table and 3 registers. The registers are used as follows: 1017 ** 1018 ** regApp+0: slot to copy min()/max() argument to for MakeRecord 1019 ** regApp+1: integer value used to ensure keys are unique 1020 ** regApp+2: output of MakeRecord 1021 */ 1022 ExprList *pList = pWin->pOwner->x.pList; 1023 KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pList, 0, 0); 1024 pWin->csrApp = pParse->nTab++; 1025 pWin->regApp = pParse->nMem+1; 1026 pParse->nMem += 3; 1027 if( pKeyInfo && pWin->pFunc->zName[1]=='i' ){ 1028 assert( pKeyInfo->aSortOrder[0]==0 ); 1029 pKeyInfo->aSortOrder[0] = 1; 1030 } 1031 sqlite3VdbeAddOp2(v, OP_OpenEphemeral, pWin->csrApp, 2); 1032 sqlite3VdbeAppendP4(v, pKeyInfo, P4_KEYINFO); 1033 sqlite3VdbeAddOp2(v, OP_Integer, 0, pWin->regApp+1); 1034 } 1035 else if( p->zName==nth_valueName || p->zName==first_valueName ){ 1036 /* Allocate two registers at pWin->regApp. These will be used to 1037 ** store the start and end index of the current frame. */ 1038 assert( pMWin->iEphCsr ); 1039 pWin->regApp = pParse->nMem+1; 1040 pWin->csrApp = pParse->nTab++; 1041 pParse->nMem += 2; 1042 sqlite3VdbeAddOp2(v, OP_OpenDup, pWin->csrApp, pMWin->iEphCsr); 1043 } 1044 else if( p->zName==leadName || p->zName==lagName ){ 1045 assert( pMWin->iEphCsr ); 1046 pWin->csrApp = pParse->nTab++; 1047 sqlite3VdbeAddOp2(v, OP_OpenDup, pWin->csrApp, pMWin->iEphCsr); 1048 } 1049 } 1050 } 1051 1052 /* 1053 ** A "PRECEDING <expr>" (eCond==0) or "FOLLOWING <expr>" (eCond==1) or the 1054 ** value of the second argument to nth_value() (eCond==2) has just been 1055 ** evaluated and the result left in register reg. This function generates VM 1056 ** code to check that the value is a non-negative integer and throws an 1057 ** exception if it is not. 1058 */ 1059 static void windowCheckIntValue(Parse *pParse, int reg, int eCond){ 1060 static const char *azErr[] = { 1061 "frame starting offset must be a non-negative integer", 1062 "frame ending offset must be a non-negative integer", 1063 "second argument to nth_value must be a positive integer" 1064 }; 1065 static int aOp[] = { OP_Ge, OP_Ge, OP_Gt }; 1066 Vdbe *v = sqlite3GetVdbe(pParse); 1067 int regZero = sqlite3GetTempReg(pParse); 1068 assert( eCond==0 || eCond==1 || eCond==2 ); 1069 sqlite3VdbeAddOp2(v, OP_Integer, 0, regZero); 1070 sqlite3VdbeAddOp2(v, OP_MustBeInt, reg, sqlite3VdbeCurrentAddr(v)+2); 1071 VdbeCoverageIf(v, eCond==0); 1072 VdbeCoverageIf(v, eCond==1); 1073 VdbeCoverageIf(v, eCond==2); 1074 sqlite3VdbeAddOp3(v, aOp[eCond], regZero, sqlite3VdbeCurrentAddr(v)+2, reg); 1075 VdbeCoverageNeverNullIf(v, eCond==0); 1076 VdbeCoverageNeverNullIf(v, eCond==1); 1077 VdbeCoverageNeverNullIf(v, eCond==2); 1078 sqlite3MayAbort(pParse); 1079 sqlite3VdbeAddOp2(v, OP_Halt, SQLITE_ERROR, OE_Abort); 1080 sqlite3VdbeAppendP4(v, (void*)azErr[eCond], P4_STATIC); 1081 sqlite3ReleaseTempReg(pParse, regZero); 1082 } 1083 1084 /* 1085 ** Return the number of arguments passed to the window-function associated 1086 ** with the object passed as the only argument to this function. 1087 */ 1088 static int windowArgCount(Window *pWin){ 1089 ExprList *pList = pWin->pOwner->x.pList; 1090 return (pList ? pList->nExpr : 0); 1091 } 1092 1093 /* 1094 ** Generate VM code to invoke either xStep() (if bInverse is 0) or 1095 ** xInverse (if bInverse is non-zero) for each window function in the 1096 ** linked list starting at pMWin. Or, for built-in window functions 1097 ** that do not use the standard function API, generate the required 1098 ** inline VM code. 1099 ** 1100 ** If argument csr is greater than or equal to 0, then argument reg is 1101 ** the first register in an array of registers guaranteed to be large 1102 ** enough to hold the array of arguments for each function. In this case 1103 ** the arguments are extracted from the current row of csr into the 1104 ** array of registers before invoking OP_AggStep or OP_AggInverse 1105 ** 1106 ** Or, if csr is less than zero, then the array of registers at reg is 1107 ** already populated with all columns from the current row of the sub-query. 1108 ** 1109 ** If argument regPartSize is non-zero, then it is a register containing the 1110 ** number of rows in the current partition. 1111 */ 1112 static void windowAggStep( 1113 Parse *pParse, 1114 Window *pMWin, /* Linked list of window functions */ 1115 int csr, /* Read arguments from this cursor */ 1116 int bInverse, /* True to invoke xInverse instead of xStep */ 1117 int reg, /* Array of registers */ 1118 int regPartSize /* Register containing size of partition */ 1119 ){ 1120 Vdbe *v = sqlite3GetVdbe(pParse); 1121 Window *pWin; 1122 for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ 1123 int flags = pWin->pFunc->funcFlags; 1124 int regArg; 1125 int nArg = windowArgCount(pWin); 1126 1127 if( csr>=0 ){ 1128 int i; 1129 for(i=0; i<nArg; i++){ 1130 sqlite3VdbeAddOp3(v, OP_Column, csr, pWin->iArgCol+i, reg+i); 1131 } 1132 regArg = reg; 1133 if( flags & SQLITE_FUNC_WINDOW_SIZE ){ 1134 if( nArg==0 ){ 1135 regArg = regPartSize; 1136 }else{ 1137 sqlite3VdbeAddOp2(v, OP_SCopy, regPartSize, reg+nArg); 1138 } 1139 nArg++; 1140 } 1141 }else{ 1142 assert( !(flags & SQLITE_FUNC_WINDOW_SIZE) ); 1143 regArg = reg + pWin->iArgCol; 1144 } 1145 1146 if( (pWin->pFunc->funcFlags & SQLITE_FUNC_MINMAX) 1147 && pWin->eStart!=TK_UNBOUNDED 1148 ){ 1149 int addrIsNull = sqlite3VdbeAddOp1(v, OP_IsNull, regArg); 1150 VdbeCoverage(v); 1151 if( bInverse==0 ){ 1152 sqlite3VdbeAddOp2(v, OP_AddImm, pWin->regApp+1, 1); 1153 sqlite3VdbeAddOp2(v, OP_SCopy, regArg, pWin->regApp); 1154 sqlite3VdbeAddOp3(v, OP_MakeRecord, pWin->regApp, 2, pWin->regApp+2); 1155 sqlite3VdbeAddOp2(v, OP_IdxInsert, pWin->csrApp, pWin->regApp+2); 1156 }else{ 1157 sqlite3VdbeAddOp4Int(v, OP_SeekGE, pWin->csrApp, 0, regArg, 1); 1158 VdbeCoverageNeverTaken(v); 1159 sqlite3VdbeAddOp1(v, OP_Delete, pWin->csrApp); 1160 sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2); 1161 } 1162 sqlite3VdbeJumpHere(v, addrIsNull); 1163 }else if( pWin->regApp ){ 1164 assert( pWin->pFunc->zName==nth_valueName 1165 || pWin->pFunc->zName==first_valueName 1166 ); 1167 assert( bInverse==0 || bInverse==1 ); 1168 sqlite3VdbeAddOp2(v, OP_AddImm, pWin->regApp+1-bInverse, 1); 1169 }else if( pWin->pFunc->zName==leadName 1170 || pWin->pFunc->zName==lagName 1171 ){ 1172 /* no-op */ 1173 }else{ 1174 int addrIf = 0; 1175 if( pWin->pFilter ){ 1176 int regTmp; 1177 assert( nArg==0 || nArg==pWin->pOwner->x.pList->nExpr ); 1178 assert( nArg || pWin->pOwner->x.pList==0 ); 1179 if( csr>0 ){ 1180 regTmp = sqlite3GetTempReg(pParse); 1181 sqlite3VdbeAddOp3(v, OP_Column, csr, pWin->iArgCol+nArg,regTmp); 1182 }else{ 1183 regTmp = regArg + nArg; 1184 } 1185 addrIf = sqlite3VdbeAddOp3(v, OP_IfNot, regTmp, 0, 1); 1186 VdbeCoverage(v); 1187 if( csr>0 ){ 1188 sqlite3ReleaseTempReg(pParse, regTmp); 1189 } 1190 } 1191 if( pWin->pFunc->funcFlags & SQLITE_FUNC_NEEDCOLL ){ 1192 CollSeq *pColl; 1193 assert( nArg>0 ); 1194 pColl = sqlite3ExprNNCollSeq(pParse, pWin->pOwner->x.pList->a[0].pExpr); 1195 sqlite3VdbeAddOp4(v, OP_CollSeq, 0,0,0, (const char*)pColl, P4_COLLSEQ); 1196 } 1197 sqlite3VdbeAddOp3(v, bInverse? OP_AggInverse : OP_AggStep, 1198 bInverse, regArg, pWin->regAccum); 1199 sqlite3VdbeAppendP4(v, pWin->pFunc, P4_FUNCDEF); 1200 sqlite3VdbeChangeP5(v, (u8)nArg); 1201 if( addrIf ) sqlite3VdbeJumpHere(v, addrIf); 1202 } 1203 } 1204 } 1205 1206 /* 1207 ** Generate VM code to invoke either xValue() (bFinal==0) or xFinalize() 1208 ** (bFinal==1) for each window function in the linked list starting at 1209 ** pMWin. Or, for built-in window-functions that do not use the standard 1210 ** API, generate the equivalent VM code. 1211 */ 1212 static void windowAggFinal(Parse *pParse, Window *pMWin, int bFinal){ 1213 Vdbe *v = sqlite3GetVdbe(pParse); 1214 Window *pWin; 1215 1216 for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ 1217 if( (pWin->pFunc->funcFlags & SQLITE_FUNC_MINMAX) 1218 && pWin->eStart!=TK_UNBOUNDED 1219 ){ 1220 sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regResult); 1221 sqlite3VdbeAddOp1(v, OP_Last, pWin->csrApp); 1222 VdbeCoverage(v); 1223 sqlite3VdbeAddOp3(v, OP_Column, pWin->csrApp, 0, pWin->regResult); 1224 sqlite3VdbeJumpHere(v, sqlite3VdbeCurrentAddr(v)-2); 1225 if( bFinal ){ 1226 sqlite3VdbeAddOp1(v, OP_ResetSorter, pWin->csrApp); 1227 } 1228 }else if( pWin->regApp ){ 1229 }else{ 1230 if( bFinal ){ 1231 sqlite3VdbeAddOp2(v, OP_AggFinal, pWin->regAccum, windowArgCount(pWin)); 1232 sqlite3VdbeAppendP4(v, pWin->pFunc, P4_FUNCDEF); 1233 sqlite3VdbeAddOp2(v, OP_Copy, pWin->regAccum, pWin->regResult); 1234 sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regAccum); 1235 }else{ 1236 sqlite3VdbeAddOp3(v, OP_AggValue, pWin->regAccum, windowArgCount(pWin), 1237 pWin->regResult); 1238 sqlite3VdbeAppendP4(v, pWin->pFunc, P4_FUNCDEF); 1239 } 1240 } 1241 } 1242 } 1243 1244 /* 1245 ** This function generates VM code to invoke the sub-routine at address 1246 ** lblFlushPart once for each partition with the entire partition cached in 1247 ** the Window.iEphCsr temp table. 1248 */ 1249 static void windowPartitionCache( 1250 Parse *pParse, 1251 Select *p, /* The rewritten SELECT statement */ 1252 WhereInfo *pWInfo, /* WhereInfo to call WhereEnd() on */ 1253 int regFlushPart, /* Register to use with Gosub lblFlushPart */ 1254 int lblFlushPart, /* Subroutine to Gosub to */ 1255 int *pRegSize /* OUT: Register containing partition size */ 1256 ){ 1257 Window *pMWin = p->pWin; 1258 Vdbe *v = sqlite3GetVdbe(pParse); 1259 int iSubCsr = p->pSrc->a[0].iCursor; 1260 int nSub = p->pSrc->a[0].pTab->nCol; 1261 int k; 1262 1263 int reg = pParse->nMem+1; 1264 int regRecord = reg+nSub; 1265 int regRowid = regRecord+1; 1266 1267 *pRegSize = regRowid; 1268 pParse->nMem += nSub + 2; 1269 1270 /* Load the column values for the row returned by the sub-select 1271 ** into an array of registers starting at reg. */ 1272 for(k=0; k<nSub; k++){ 1273 sqlite3VdbeAddOp3(v, OP_Column, iSubCsr, k, reg+k); 1274 } 1275 sqlite3VdbeAddOp3(v, OP_MakeRecord, reg, nSub, regRecord); 1276 1277 /* Check if this is the start of a new partition. If so, call the 1278 ** flush_partition sub-routine. */ 1279 if( pMWin->pPartition ){ 1280 int addr; 1281 ExprList *pPart = pMWin->pPartition; 1282 int nPart = pPart->nExpr; 1283 int regNewPart = reg + pMWin->nBufferCol; 1284 KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pPart, 0, 0); 1285 1286 addr = sqlite3VdbeAddOp3(v, OP_Compare, regNewPart, pMWin->regPart,nPart); 1287 sqlite3VdbeAppendP4(v, (void*)pKeyInfo, P4_KEYINFO); 1288 sqlite3VdbeAddOp3(v, OP_Jump, addr+2, addr+4, addr+2); 1289 VdbeCoverageEqNe(v); 1290 sqlite3VdbeAddOp3(v, OP_Copy, regNewPart, pMWin->regPart, nPart-1); 1291 sqlite3VdbeAddOp2(v, OP_Gosub, regFlushPart, lblFlushPart); 1292 VdbeComment((v, "call flush_partition")); 1293 } 1294 1295 /* Buffer the current row in the ephemeral table. */ 1296 sqlite3VdbeAddOp2(v, OP_NewRowid, pMWin->iEphCsr, regRowid); 1297 sqlite3VdbeAddOp3(v, OP_Insert, pMWin->iEphCsr, regRecord, regRowid); 1298 1299 /* End of the input loop */ 1300 sqlite3WhereEnd(pWInfo); 1301 1302 /* Invoke "flush_partition" to deal with the final (or only) partition */ 1303 sqlite3VdbeAddOp2(v, OP_Gosub, regFlushPart, lblFlushPart); 1304 VdbeComment((v, "call flush_partition")); 1305 } 1306 1307 /* 1308 ** Invoke the sub-routine at regGosub (generated by code in select.c) to 1309 ** return the current row of Window.iEphCsr. If all window functions are 1310 ** aggregate window functions that use the standard API, a single 1311 ** OP_Gosub instruction is all that this routine generates. Extra VM code 1312 ** for per-row processing is only generated for the following built-in window 1313 ** functions: 1314 ** 1315 ** nth_value() 1316 ** first_value() 1317 ** lag() 1318 ** lead() 1319 */ 1320 static void windowReturnOneRow( 1321 Parse *pParse, 1322 Window *pMWin, 1323 int regGosub, 1324 int addrGosub 1325 ){ 1326 Vdbe *v = sqlite3GetVdbe(pParse); 1327 Window *pWin; 1328 for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ 1329 FuncDef *pFunc = pWin->pFunc; 1330 if( pFunc->zName==nth_valueName 1331 || pFunc->zName==first_valueName 1332 ){ 1333 int csr = pWin->csrApp; 1334 int lbl = sqlite3VdbeMakeLabel(pParse); 1335 int tmpReg = sqlite3GetTempReg(pParse); 1336 sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regResult); 1337 1338 if( pFunc->zName==nth_valueName ){ 1339 sqlite3VdbeAddOp3(v, OP_Column, pMWin->iEphCsr, pWin->iArgCol+1,tmpReg); 1340 windowCheckIntValue(pParse, tmpReg, 2); 1341 }else{ 1342 sqlite3VdbeAddOp2(v, OP_Integer, 1, tmpReg); 1343 } 1344 sqlite3VdbeAddOp3(v, OP_Add, tmpReg, pWin->regApp, tmpReg); 1345 sqlite3VdbeAddOp3(v, OP_Gt, pWin->regApp+1, lbl, tmpReg); 1346 VdbeCoverageNeverNull(v); 1347 sqlite3VdbeAddOp3(v, OP_SeekRowid, csr, 0, tmpReg); 1348 VdbeCoverageNeverTaken(v); 1349 sqlite3VdbeAddOp3(v, OP_Column, csr, pWin->iArgCol, pWin->regResult); 1350 sqlite3VdbeResolveLabel(v, lbl); 1351 sqlite3ReleaseTempReg(pParse, tmpReg); 1352 } 1353 else if( pFunc->zName==leadName || pFunc->zName==lagName ){ 1354 int nArg = pWin->pOwner->x.pList->nExpr; 1355 int iEph = pMWin->iEphCsr; 1356 int csr = pWin->csrApp; 1357 int lbl = sqlite3VdbeMakeLabel(pParse); 1358 int tmpReg = sqlite3GetTempReg(pParse); 1359 1360 if( nArg<3 ){ 1361 sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regResult); 1362 }else{ 1363 sqlite3VdbeAddOp3(v, OP_Column, iEph, pWin->iArgCol+2, pWin->regResult); 1364 } 1365 sqlite3VdbeAddOp2(v, OP_Rowid, iEph, tmpReg); 1366 if( nArg<2 ){ 1367 int val = (pFunc->zName==leadName ? 1 : -1); 1368 sqlite3VdbeAddOp2(v, OP_AddImm, tmpReg, val); 1369 }else{ 1370 int op = (pFunc->zName==leadName ? OP_Add : OP_Subtract); 1371 int tmpReg2 = sqlite3GetTempReg(pParse); 1372 sqlite3VdbeAddOp3(v, OP_Column, iEph, pWin->iArgCol+1, tmpReg2); 1373 sqlite3VdbeAddOp3(v, op, tmpReg2, tmpReg, tmpReg); 1374 sqlite3ReleaseTempReg(pParse, tmpReg2); 1375 } 1376 1377 sqlite3VdbeAddOp3(v, OP_SeekRowid, csr, lbl, tmpReg); 1378 VdbeCoverage(v); 1379 sqlite3VdbeAddOp3(v, OP_Column, csr, pWin->iArgCol, pWin->regResult); 1380 sqlite3VdbeResolveLabel(v, lbl); 1381 sqlite3ReleaseTempReg(pParse, tmpReg); 1382 } 1383 } 1384 sqlite3VdbeAddOp2(v, OP_Gosub, regGosub, addrGosub); 1385 } 1386 1387 /* 1388 ** Invoke the code generated by windowReturnOneRow() and, optionally, the 1389 ** xInverse() function for each window function, for one or more rows 1390 ** from the Window.iEphCsr temp table. This routine generates VM code 1391 ** similar to: 1392 ** 1393 ** while( regCtr>0 ){ 1394 ** regCtr--; 1395 ** windowReturnOneRow() 1396 ** if( bInverse ){ 1397 ** AggInverse 1398 ** } 1399 ** Next (Window.iEphCsr) 1400 ** } 1401 */ 1402 static void windowReturnRows( 1403 Parse *pParse, 1404 Window *pMWin, /* List of window functions */ 1405 int regCtr, /* Register containing number of rows */ 1406 int regGosub, /* Register for Gosub addrGosub */ 1407 int addrGosub, /* Address of sub-routine for ReturnOneRow */ 1408 int regInvArg, /* Array of registers for xInverse args */ 1409 int regInvSize /* Register containing size of partition */ 1410 ){ 1411 int addr; 1412 Vdbe *v = sqlite3GetVdbe(pParse); 1413 windowAggFinal(pParse, pMWin, 0); 1414 addr = sqlite3VdbeAddOp3(v, OP_IfPos, regCtr, sqlite3VdbeCurrentAddr(v)+2 ,1); 1415 VdbeCoverage(v); 1416 sqlite3VdbeAddOp2(v, OP_Goto, 0, 0); 1417 windowReturnOneRow(pParse, pMWin, regGosub, addrGosub); 1418 if( regInvArg ){ 1419 windowAggStep(pParse, pMWin, pMWin->iEphCsr, 1, regInvArg, regInvSize); 1420 } 1421 sqlite3VdbeAddOp2(v, OP_Next, pMWin->iEphCsr, addr); 1422 VdbeCoverage(v); 1423 sqlite3VdbeJumpHere(v, addr+1); /* The OP_Goto */ 1424 } 1425 1426 /* 1427 ** Generate code to set the accumulator register for each window function 1428 ** in the linked list passed as the second argument to NULL. And perform 1429 ** any equivalent initialization required by any built-in window functions 1430 ** in the list. 1431 */ 1432 static int windowInitAccum(Parse *pParse, Window *pMWin){ 1433 Vdbe *v = sqlite3GetVdbe(pParse); 1434 int regArg; 1435 int nArg = 0; 1436 Window *pWin; 1437 for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ 1438 FuncDef *pFunc = pWin->pFunc; 1439 sqlite3VdbeAddOp2(v, OP_Null, 0, pWin->regAccum); 1440 nArg = MAX(nArg, windowArgCount(pWin)); 1441 if( pFunc->zName==nth_valueName 1442 || pFunc->zName==first_valueName 1443 ){ 1444 sqlite3VdbeAddOp2(v, OP_Integer, 0, pWin->regApp); 1445 sqlite3VdbeAddOp2(v, OP_Integer, 0, pWin->regApp+1); 1446 } 1447 1448 if( (pFunc->funcFlags & SQLITE_FUNC_MINMAX) && pWin->csrApp ){ 1449 assert( pWin->eStart!=TK_UNBOUNDED ); 1450 sqlite3VdbeAddOp1(v, OP_ResetSorter, pWin->csrApp); 1451 sqlite3VdbeAddOp2(v, OP_Integer, 0, pWin->regApp+1); 1452 } 1453 } 1454 regArg = pParse->nMem+1; 1455 pParse->nMem += nArg; 1456 return regArg; 1457 } 1458 1459 1460 /* 1461 ** This function does the work of sqlite3WindowCodeStep() for all "ROWS" 1462 ** window frame types except for "BETWEEN UNBOUNDED PRECEDING AND CURRENT 1463 ** ROW". Pseudo-code for each follows. 1464 ** 1465 ** ROWS BETWEEN <expr1> PRECEDING AND <expr2> FOLLOWING 1466 ** 1467 ** ... 1468 ** if( new partition ){ 1469 ** Gosub flush_partition 1470 ** } 1471 ** Insert (record in eph-table) 1472 ** sqlite3WhereEnd() 1473 ** Gosub flush_partition 1474 ** 1475 ** flush_partition: 1476 ** Once { 1477 ** OpenDup (iEphCsr -> csrStart) 1478 ** OpenDup (iEphCsr -> csrEnd) 1479 ** } 1480 ** regStart = <expr1> // PRECEDING expression 1481 ** regEnd = <expr2> // FOLLOWING expression 1482 ** if( regStart<0 || regEnd<0 ){ error! } 1483 ** Rewind (csr,csrStart,csrEnd) // if EOF goto flush_partition_done 1484 ** Next(csrEnd) // if EOF skip Aggstep 1485 ** Aggstep (csrEnd) 1486 ** if( (regEnd--)<=0 ){ 1487 ** AggFinal (xValue) 1488 ** Gosub addrGosub 1489 ** Next(csr) // if EOF goto flush_partition_done 1490 ** if( (regStart--)<=0 ){ 1491 ** AggInverse (csrStart) 1492 ** Next(csrStart) 1493 ** } 1494 ** } 1495 ** flush_partition_done: 1496 ** ResetSorter (csr) 1497 ** Return 1498 ** 1499 ** ROWS BETWEEN <expr> PRECEDING AND CURRENT ROW 1500 ** ROWS BETWEEN CURRENT ROW AND <expr> FOLLOWING 1501 ** ROWS BETWEEN UNBOUNDED PRECEDING AND <expr> FOLLOWING 1502 ** 1503 ** These are similar to the above. For "CURRENT ROW", intialize the 1504 ** register to 0. For "UNBOUNDED PRECEDING" to infinity. 1505 ** 1506 ** ROWS BETWEEN <expr> PRECEDING AND UNBOUNDED FOLLOWING 1507 ** ROWS BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING 1508 ** 1509 ** Rewind (csr,csrStart,csrEnd) // if EOF goto flush_partition_done 1510 ** while( 1 ){ 1511 ** Next(csrEnd) // Exit while(1) at EOF 1512 ** Aggstep (csrEnd) 1513 ** } 1514 ** while( 1 ){ 1515 ** AggFinal (xValue) 1516 ** Gosub addrGosub 1517 ** Next(csr) // if EOF goto flush_partition_done 1518 ** if( (regStart--)<=0 ){ 1519 ** AggInverse (csrStart) 1520 ** Next(csrStart) 1521 ** } 1522 ** } 1523 ** 1524 ** For the "CURRENT ROW AND UNBOUNDED FOLLOWING" case, the final if() 1525 ** condition is always true (as if regStart were initialized to 0). 1526 ** 1527 ** RANGE BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING 1528 ** 1529 ** This is the only RANGE case handled by this routine. It modifies the 1530 ** second while( 1 ) loop in "ROWS BETWEEN CURRENT ... UNBOUNDED..." to 1531 ** be: 1532 ** 1533 ** while( 1 ){ 1534 ** AggFinal (xValue) 1535 ** while( 1 ){ 1536 ** regPeer++ 1537 ** Gosub addrGosub 1538 ** Next(csr) // if EOF goto flush_partition_done 1539 ** if( new peer ) break; 1540 ** } 1541 ** while( (regPeer--)>0 ){ 1542 ** AggInverse (csrStart) 1543 ** Next(csrStart) 1544 ** } 1545 ** } 1546 ** 1547 ** ROWS BETWEEN <expr> FOLLOWING AND <expr> FOLLOWING 1548 ** 1549 ** regEnd = regEnd - regStart 1550 ** Rewind (csr,csrStart,csrEnd) // if EOF goto flush_partition_done 1551 ** Aggstep (csrEnd) 1552 ** Next(csrEnd) // if EOF fall-through 1553 ** if( (regEnd--)<=0 ){ 1554 ** if( (regStart--)<=0 ){ 1555 ** AggFinal (xValue) 1556 ** Gosub addrGosub 1557 ** Next(csr) // if EOF goto flush_partition_done 1558 ** } 1559 ** AggInverse (csrStart) 1560 ** Next (csrStart) 1561 ** } 1562 ** 1563 ** ROWS BETWEEN <expr> PRECEDING AND <expr> PRECEDING 1564 ** 1565 ** Replace the bit after "Rewind" in the above with: 1566 ** 1567 ** if( (regEnd--)<=0 ){ 1568 ** AggStep (csrEnd) 1569 ** Next (csrEnd) 1570 ** } 1571 ** AggFinal (xValue) 1572 ** Gosub addrGosub 1573 ** Next(csr) // if EOF goto flush_partition_done 1574 ** if( (regStart--)<=0 ){ 1575 ** AggInverse (csr2) 1576 ** Next (csr2) 1577 ** } 1578 ** 1579 */ 1580 static void windowCodeRowExprStep( 1581 Parse *pParse, 1582 Select *p, 1583 WhereInfo *pWInfo, 1584 int regGosub, 1585 int addrGosub 1586 ){ 1587 Window *pMWin = p->pWin; 1588 Vdbe *v = sqlite3GetVdbe(pParse); 1589 int regFlushPart; /* Register for "Gosub flush_partition" */ 1590 int lblFlushPart; /* Label for "Gosub flush_partition" */ 1591 int lblFlushDone; /* Label for "Gosub flush_partition_done" */ 1592 1593 int regArg; 1594 int addr; 1595 int csrStart = pParse->nTab++; 1596 int csrEnd = pParse->nTab++; 1597 int regStart; /* Value of <expr> PRECEDING */ 1598 int regEnd; /* Value of <expr> FOLLOWING */ 1599 int addrGoto; 1600 int addrTop; 1601 int addrIfPos1 = 0; 1602 int addrIfPos2 = 0; 1603 int regSize = 0; 1604 1605 assert( pMWin->eStart==TK_PRECEDING 1606 || pMWin->eStart==TK_CURRENT 1607 || pMWin->eStart==TK_FOLLOWING 1608 || pMWin->eStart==TK_UNBOUNDED 1609 ); 1610 assert( pMWin->eEnd==TK_FOLLOWING 1611 || pMWin->eEnd==TK_CURRENT 1612 || pMWin->eEnd==TK_UNBOUNDED 1613 || pMWin->eEnd==TK_PRECEDING 1614 ); 1615 1616 /* Allocate register and label for the "flush_partition" sub-routine. */ 1617 regFlushPart = ++pParse->nMem; 1618 lblFlushPart = sqlite3VdbeMakeLabel(pParse); 1619 lblFlushDone = sqlite3VdbeMakeLabel(pParse); 1620 1621 regStart = ++pParse->nMem; 1622 regEnd = ++pParse->nMem; 1623 1624 windowPartitionCache(pParse, p, pWInfo, regFlushPart, lblFlushPart, ®Size); 1625 1626 addrGoto = sqlite3VdbeAddOp0(v, OP_Goto); 1627 1628 /* Start of "flush_partition" */ 1629 sqlite3VdbeResolveLabel(v, lblFlushPart); 1630 sqlite3VdbeAddOp2(v, OP_Once, 0, sqlite3VdbeCurrentAddr(v)+3); 1631 VdbeCoverage(v); 1632 VdbeComment((v, "Flush_partition subroutine")); 1633 sqlite3VdbeAddOp2(v, OP_OpenDup, csrStart, pMWin->iEphCsr); 1634 sqlite3VdbeAddOp2(v, OP_OpenDup, csrEnd, pMWin->iEphCsr); 1635 1636 /* If either regStart or regEnd are not non-negative integers, throw 1637 ** an exception. */ 1638 if( pMWin->pStart ){ 1639 sqlite3ExprCode(pParse, pMWin->pStart, regStart); 1640 windowCheckIntValue(pParse, regStart, 0); 1641 } 1642 if( pMWin->pEnd ){ 1643 sqlite3ExprCode(pParse, pMWin->pEnd, regEnd); 1644 windowCheckIntValue(pParse, regEnd, 1); 1645 } 1646 1647 /* If this is "ROWS <expr1> FOLLOWING AND ROWS <expr2> FOLLOWING", do: 1648 ** 1649 ** if( regEnd<regStart ){ 1650 ** // The frame always consists of 0 rows 1651 ** regStart = regSize; 1652 ** } 1653 ** regEnd = regEnd - regStart; 1654 */ 1655 if( pMWin->pEnd && pMWin->eStart==TK_FOLLOWING ){ 1656 assert( pMWin->pStart!=0 ); 1657 assert( pMWin->eEnd==TK_FOLLOWING ); 1658 sqlite3VdbeAddOp3(v, OP_Ge, regStart, sqlite3VdbeCurrentAddr(v)+2, regEnd); 1659 VdbeCoverageNeverNull(v); 1660 sqlite3VdbeAddOp2(v, OP_Copy, regSize, regStart); 1661 sqlite3VdbeAddOp3(v, OP_Subtract, regStart, regEnd, regEnd); 1662 } 1663 1664 if( pMWin->pStart && pMWin->eEnd==TK_PRECEDING ){ 1665 assert( pMWin->pEnd!=0 ); 1666 assert( pMWin->eStart==TK_PRECEDING ); 1667 sqlite3VdbeAddOp3(v, OP_Le, regStart, sqlite3VdbeCurrentAddr(v)+3, regEnd); 1668 VdbeCoverageNeverNull(v); 1669 sqlite3VdbeAddOp2(v, OP_Copy, regSize, regStart); 1670 sqlite3VdbeAddOp2(v, OP_Copy, regSize, regEnd); 1671 } 1672 1673 /* Initialize the accumulator register for each window function to NULL */ 1674 regArg = windowInitAccum(pParse, pMWin); 1675 1676 sqlite3VdbeAddOp2(v, OP_Rewind, pMWin->iEphCsr, lblFlushDone); 1677 VdbeCoverage(v); 1678 sqlite3VdbeAddOp2(v, OP_Rewind, csrStart, lblFlushDone); 1679 VdbeCoverageNeverTaken(v); 1680 sqlite3VdbeChangeP5(v, 1); 1681 sqlite3VdbeAddOp2(v, OP_Rewind, csrEnd, lblFlushDone); 1682 VdbeCoverageNeverTaken(v); 1683 sqlite3VdbeChangeP5(v, 1); 1684 1685 /* Invoke AggStep function for each window function using the row that 1686 ** csrEnd currently points to. Or, if csrEnd is already at EOF, 1687 ** do nothing. */ 1688 addrTop = sqlite3VdbeCurrentAddr(v); 1689 if( pMWin->eEnd==TK_PRECEDING ){ 1690 addrIfPos1 = sqlite3VdbeAddOp3(v, OP_IfPos, regEnd, 0 , 1); 1691 VdbeCoverage(v); 1692 } 1693 sqlite3VdbeAddOp2(v, OP_Next, csrEnd, sqlite3VdbeCurrentAddr(v)+2); 1694 VdbeCoverage(v); 1695 addr = sqlite3VdbeAddOp0(v, OP_Goto); 1696 windowAggStep(pParse, pMWin, csrEnd, 0, regArg, regSize); 1697 if( pMWin->eEnd==TK_UNBOUNDED ){ 1698 sqlite3VdbeAddOp2(v, OP_Goto, 0, addrTop); 1699 sqlite3VdbeJumpHere(v, addr); 1700 addrTop = sqlite3VdbeCurrentAddr(v); 1701 }else{ 1702 sqlite3VdbeJumpHere(v, addr); 1703 if( pMWin->eEnd==TK_PRECEDING ){ 1704 sqlite3VdbeJumpHere(v, addrIfPos1); 1705 } 1706 } 1707 1708 if( pMWin->eEnd==TK_FOLLOWING ){ 1709 addrIfPos1 = sqlite3VdbeAddOp3(v, OP_IfPos, regEnd, 0 , 1); 1710 VdbeCoverage(v); 1711 } 1712 if( pMWin->eStart==TK_FOLLOWING ){ 1713 addrIfPos2 = sqlite3VdbeAddOp3(v, OP_IfPos, regStart, 0 , 1); 1714 VdbeCoverage(v); 1715 } 1716 windowAggFinal(pParse, pMWin, 0); 1717 windowReturnOneRow(pParse, pMWin, regGosub, addrGosub); 1718 sqlite3VdbeAddOp2(v, OP_Next, pMWin->iEphCsr, sqlite3VdbeCurrentAddr(v)+2); 1719 VdbeCoverage(v); 1720 sqlite3VdbeAddOp2(v, OP_Goto, 0, lblFlushDone); 1721 if( pMWin->eStart==TK_FOLLOWING ){ 1722 sqlite3VdbeJumpHere(v, addrIfPos2); 1723 } 1724 1725 if( pMWin->eStart==TK_CURRENT 1726 || pMWin->eStart==TK_PRECEDING 1727 || pMWin->eStart==TK_FOLLOWING 1728 ){ 1729 int lblSkipInverse = sqlite3VdbeMakeLabel(pParse);; 1730 if( pMWin->eStart==TK_PRECEDING ){ 1731 sqlite3VdbeAddOp3(v, OP_IfPos, regStart, lblSkipInverse, 1); 1732 VdbeCoverage(v); 1733 } 1734 if( pMWin->eStart==TK_FOLLOWING ){ 1735 sqlite3VdbeAddOp2(v, OP_Next, csrStart, sqlite3VdbeCurrentAddr(v)+2); 1736 VdbeCoverage(v); 1737 sqlite3VdbeAddOp2(v, OP_Goto, 0, lblSkipInverse); 1738 }else{ 1739 sqlite3VdbeAddOp2(v, OP_Next, csrStart, sqlite3VdbeCurrentAddr(v)+1); 1740 VdbeCoverageAlwaysTaken(v); 1741 } 1742 windowAggStep(pParse, pMWin, csrStart, 1, regArg, regSize); 1743 sqlite3VdbeResolveLabel(v, lblSkipInverse); 1744 } 1745 if( pMWin->eEnd==TK_FOLLOWING ){ 1746 sqlite3VdbeJumpHere(v, addrIfPos1); 1747 } 1748 sqlite3VdbeAddOp2(v, OP_Goto, 0, addrTop); 1749 1750 /* flush_partition_done: */ 1751 sqlite3VdbeResolveLabel(v, lblFlushDone); 1752 sqlite3VdbeAddOp1(v, OP_ResetSorter, pMWin->iEphCsr); 1753 sqlite3VdbeAddOp1(v, OP_Return, regFlushPart); 1754 VdbeComment((v, "end flush_partition subroutine")); 1755 1756 /* Jump to here to skip over flush_partition */ 1757 sqlite3VdbeJumpHere(v, addrGoto); 1758 } 1759 1760 /* 1761 ** This function does the work of sqlite3WindowCodeStep() for cases that 1762 ** would normally be handled by windowCodeDefaultStep() when there are 1763 ** one or more built-in window-functions that require the entire partition 1764 ** to be cached in a temp table before any rows can be returned. Additionally. 1765 ** "RANGE BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING" is always handled by 1766 ** this function. 1767 ** 1768 ** Pseudo-code corresponding to the VM code generated by this function 1769 ** for each type of window follows. 1770 ** 1771 ** RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 1772 ** 1773 ** flush_partition: 1774 ** Once { 1775 ** OpenDup (iEphCsr -> csrLead) 1776 ** } 1777 ** Integer ctr 0 1778 ** foreach row (csrLead){ 1779 ** if( new peer ){ 1780 ** AggFinal (xValue) 1781 ** for(i=0; i<ctr; i++){ 1782 ** Gosub addrGosub 1783 ** Next iEphCsr 1784 ** } 1785 ** Integer ctr 0 1786 ** } 1787 ** AggStep (csrLead) 1788 ** Incr ctr 1789 ** } 1790 ** 1791 ** AggFinal (xFinalize) 1792 ** for(i=0; i<ctr; i++){ 1793 ** Gosub addrGosub 1794 ** Next iEphCsr 1795 ** } 1796 ** 1797 ** ResetSorter (csr) 1798 ** Return 1799 ** 1800 ** ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 1801 ** 1802 ** As above, except that the "if( new peer )" branch is always taken. 1803 ** 1804 ** RANGE BETWEEN CURRENT ROW AND CURRENT ROW 1805 ** 1806 ** As above, except that each of the for() loops becomes: 1807 ** 1808 ** for(i=0; i<ctr; i++){ 1809 ** Gosub addrGosub 1810 ** AggInverse (iEphCsr) 1811 ** Next iEphCsr 1812 ** } 1813 ** 1814 ** RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING 1815 ** 1816 ** flush_partition: 1817 ** Once { 1818 ** OpenDup (iEphCsr -> csrLead) 1819 ** } 1820 ** foreach row (csrLead) { 1821 ** AggStep (csrLead) 1822 ** } 1823 ** foreach row (iEphCsr) { 1824 ** Gosub addrGosub 1825 ** } 1826 ** 1827 ** RANGE BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING 1828 ** 1829 ** flush_partition: 1830 ** Once { 1831 ** OpenDup (iEphCsr -> csrLead) 1832 ** } 1833 ** foreach row (csrLead){ 1834 ** AggStep (csrLead) 1835 ** } 1836 ** Rewind (csrLead) 1837 ** Integer ctr 0 1838 ** foreach row (csrLead){ 1839 ** if( new peer ){ 1840 ** AggFinal (xValue) 1841 ** for(i=0; i<ctr; i++){ 1842 ** Gosub addrGosub 1843 ** AggInverse (iEphCsr) 1844 ** Next iEphCsr 1845 ** } 1846 ** Integer ctr 0 1847 ** } 1848 ** Incr ctr 1849 ** } 1850 ** 1851 ** AggFinal (xFinalize) 1852 ** for(i=0; i<ctr; i++){ 1853 ** Gosub addrGosub 1854 ** Next iEphCsr 1855 ** } 1856 ** 1857 ** ResetSorter (csr) 1858 ** Return 1859 */ 1860 static void windowCodeCacheStep( 1861 Parse *pParse, 1862 Select *p, 1863 WhereInfo *pWInfo, 1864 int regGosub, 1865 int addrGosub 1866 ){ 1867 Window *pMWin = p->pWin; 1868 Vdbe *v = sqlite3GetVdbe(pParse); 1869 int k; 1870 int addr; 1871 ExprList *pPart = pMWin->pPartition; 1872 ExprList *pOrderBy = pMWin->pOrderBy; 1873 int nPeer = pOrderBy ? pOrderBy->nExpr : 0; 1874 int regNewPeer; 1875 1876 int addrGoto; /* Address of Goto used to jump flush_par.. */ 1877 int addrNext; /* Jump here for next iteration of loop */ 1878 int regFlushPart; 1879 int lblFlushPart; 1880 int csrLead; 1881 int regCtr; 1882 int regArg; /* Register array to martial function args */ 1883 int regSize; 1884 int lblEmpty; 1885 int bReverse = pMWin->pOrderBy && pMWin->eStart==TK_CURRENT 1886 && pMWin->eEnd==TK_UNBOUNDED; 1887 1888 assert( (pMWin->eStart==TK_UNBOUNDED && pMWin->eEnd==TK_CURRENT) 1889 || (pMWin->eStart==TK_UNBOUNDED && pMWin->eEnd==TK_UNBOUNDED) 1890 || (pMWin->eStart==TK_CURRENT && pMWin->eEnd==TK_CURRENT) 1891 || (pMWin->eStart==TK_CURRENT && pMWin->eEnd==TK_UNBOUNDED) 1892 ); 1893 1894 lblEmpty = sqlite3VdbeMakeLabel(pParse); 1895 regNewPeer = pParse->nMem+1; 1896 pParse->nMem += nPeer; 1897 1898 /* Allocate register and label for the "flush_partition" sub-routine. */ 1899 regFlushPart = ++pParse->nMem; 1900 lblFlushPart = sqlite3VdbeMakeLabel(pParse); 1901 1902 csrLead = pParse->nTab++; 1903 regCtr = ++pParse->nMem; 1904 1905 windowPartitionCache(pParse, p, pWInfo, regFlushPart, lblFlushPart, ®Size); 1906 addrGoto = sqlite3VdbeAddOp0(v, OP_Goto); 1907 1908 /* Start of "flush_partition" */ 1909 sqlite3VdbeResolveLabel(v, lblFlushPart); 1910 sqlite3VdbeAddOp2(v, OP_Once, 0, sqlite3VdbeCurrentAddr(v)+2); 1911 VdbeCoverage(v); 1912 sqlite3VdbeAddOp2(v, OP_OpenDup, csrLead, pMWin->iEphCsr); 1913 1914 /* Initialize the accumulator register for each window function to NULL */ 1915 regArg = windowInitAccum(pParse, pMWin); 1916 1917 sqlite3VdbeAddOp2(v, OP_Integer, 0, regCtr); 1918 sqlite3VdbeAddOp2(v, OP_Rewind, csrLead, lblEmpty); 1919 VdbeCoverage(v); 1920 sqlite3VdbeAddOp2(v, OP_Rewind, pMWin->iEphCsr, lblEmpty); 1921 VdbeCoverageNeverTaken(v); 1922 1923 if( bReverse ){ 1924 int addr2 = sqlite3VdbeCurrentAddr(v); 1925 windowAggStep(pParse, pMWin, csrLead, 0, regArg, regSize); 1926 sqlite3VdbeAddOp2(v, OP_Next, csrLead, addr2); 1927 VdbeCoverage(v); 1928 sqlite3VdbeAddOp2(v, OP_Rewind, csrLead, lblEmpty); 1929 VdbeCoverageNeverTaken(v); 1930 } 1931 addrNext = sqlite3VdbeCurrentAddr(v); 1932 1933 if( pOrderBy && (pMWin->eEnd==TK_CURRENT || pMWin->eStart==TK_CURRENT) ){ 1934 int bCurrent = (pMWin->eStart==TK_CURRENT); 1935 int addrJump = 0; /* Address of OP_Jump below */ 1936 if( pMWin->eType==TK_RANGE ){ 1937 int iOff = pMWin->nBufferCol + (pPart ? pPart->nExpr : 0); 1938 int regPeer = pMWin->regPart + (pPart ? pPart->nExpr : 0); 1939 KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pOrderBy, 0, 0); 1940 for(k=0; k<nPeer; k++){ 1941 sqlite3VdbeAddOp3(v, OP_Column, csrLead, iOff+k, regNewPeer+k); 1942 } 1943 addr = sqlite3VdbeAddOp3(v, OP_Compare, regNewPeer, regPeer, nPeer); 1944 sqlite3VdbeAppendP4(v, (void*)pKeyInfo, P4_KEYINFO); 1945 addrJump = sqlite3VdbeAddOp3(v, OP_Jump, addr+2, 0, addr+2); 1946 VdbeCoverage(v); 1947 sqlite3VdbeAddOp3(v, OP_Copy, regNewPeer, regPeer, nPeer-1); 1948 } 1949 1950 windowReturnRows(pParse, pMWin, regCtr, regGosub, addrGosub, 1951 (bCurrent ? regArg : 0), (bCurrent ? regSize : 0) 1952 ); 1953 if( addrJump ) sqlite3VdbeJumpHere(v, addrJump); 1954 } 1955 1956 if( bReverse==0 ){ 1957 windowAggStep(pParse, pMWin, csrLead, 0, regArg, regSize); 1958 } 1959 sqlite3VdbeAddOp2(v, OP_AddImm, regCtr, 1); 1960 sqlite3VdbeAddOp2(v, OP_Next, csrLead, addrNext); 1961 VdbeCoverage(v); 1962 1963 windowReturnRows(pParse, pMWin, regCtr, regGosub, addrGosub, 0, 0); 1964 1965 sqlite3VdbeResolveLabel(v, lblEmpty); 1966 sqlite3VdbeAddOp1(v, OP_ResetSorter, pMWin->iEphCsr); 1967 sqlite3VdbeAddOp1(v, OP_Return, regFlushPart); 1968 1969 /* Jump to here to skip over flush_partition */ 1970 sqlite3VdbeJumpHere(v, addrGoto); 1971 } 1972 1973 1974 /* 1975 ** RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 1976 ** 1977 ** ... 1978 ** if( new partition ){ 1979 ** AggFinal (xFinalize) 1980 ** Gosub addrGosub 1981 ** ResetSorter eph-table 1982 ** } 1983 ** else if( new peer ){ 1984 ** AggFinal (xValue) 1985 ** Gosub addrGosub 1986 ** ResetSorter eph-table 1987 ** } 1988 ** AggStep 1989 ** Insert (record into eph-table) 1990 ** sqlite3WhereEnd() 1991 ** AggFinal (xFinalize) 1992 ** Gosub addrGosub 1993 ** 1994 ** RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING 1995 ** 1996 ** As above, except take no action for a "new peer". Invoke 1997 ** the sub-routine once only for each partition. 1998 ** 1999 ** RANGE BETWEEN CURRENT ROW AND CURRENT ROW 2000 ** 2001 ** As above, except that the "new peer" condition is handled in the 2002 ** same way as "new partition" (so there is no "else if" block). 2003 ** 2004 ** ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 2005 ** 2006 ** As above, except assume every row is a "new peer". 2007 */ 2008 static void windowCodeDefaultStep( 2009 Parse *pParse, 2010 Select *p, 2011 WhereInfo *pWInfo, 2012 int regGosub, 2013 int addrGosub 2014 ){ 2015 Window *pMWin = p->pWin; 2016 Vdbe *v = sqlite3GetVdbe(pParse); 2017 int k; 2018 int iSubCsr = p->pSrc->a[0].iCursor; 2019 int nSub = p->pSrc->a[0].pTab->nCol; 2020 int reg = pParse->nMem+1; 2021 int regRecord = reg+nSub; 2022 int regRowid = regRecord+1; 2023 int addr; 2024 ExprList *pPart = pMWin->pPartition; 2025 ExprList *pOrderBy = pMWin->pOrderBy; 2026 2027 assert( pMWin->eType==TK_RANGE 2028 || (pMWin->eStart==TK_UNBOUNDED && pMWin->eEnd==TK_CURRENT) 2029 ); 2030 2031 assert( (pMWin->eStart==TK_UNBOUNDED && pMWin->eEnd==TK_CURRENT) 2032 || (pMWin->eStart==TK_UNBOUNDED && pMWin->eEnd==TK_UNBOUNDED) 2033 || (pMWin->eStart==TK_CURRENT && pMWin->eEnd==TK_CURRENT) 2034 || (pMWin->eStart==TK_CURRENT && pMWin->eEnd==TK_UNBOUNDED && !pOrderBy) 2035 ); 2036 2037 if( pMWin->eEnd==TK_UNBOUNDED ){ 2038 pOrderBy = 0; 2039 } 2040 2041 pParse->nMem += nSub + 2; 2042 2043 /* Load the individual column values of the row returned by 2044 ** the sub-select into an array of registers. */ 2045 for(k=0; k<nSub; k++){ 2046 sqlite3VdbeAddOp3(v, OP_Column, iSubCsr, k, reg+k); 2047 } 2048 2049 /* Check if this is the start of a new partition or peer group. */ 2050 if( pPart || pOrderBy ){ 2051 int nPart = (pPart ? pPart->nExpr : 0); 2052 int addrGoto = 0; 2053 int addrJump = 0; 2054 int nPeer = (pOrderBy ? pOrderBy->nExpr : 0); 2055 2056 if( pPart ){ 2057 int regNewPart = reg + pMWin->nBufferCol; 2058 KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pPart, 0, 0); 2059 addr = sqlite3VdbeAddOp3(v, OP_Compare, regNewPart, pMWin->regPart,nPart); 2060 sqlite3VdbeAppendP4(v, (void*)pKeyInfo, P4_KEYINFO); 2061 addrJump = sqlite3VdbeAddOp3(v, OP_Jump, addr+2, 0, addr+2); 2062 VdbeCoverageEqNe(v); 2063 windowAggFinal(pParse, pMWin, 1); 2064 if( pOrderBy ){ 2065 addrGoto = sqlite3VdbeAddOp0(v, OP_Goto); 2066 } 2067 } 2068 2069 if( pOrderBy ){ 2070 int regNewPeer = reg + pMWin->nBufferCol + nPart; 2071 int regPeer = pMWin->regPart + nPart; 2072 2073 if( addrJump ) sqlite3VdbeJumpHere(v, addrJump); 2074 if( pMWin->eType==TK_RANGE ){ 2075 KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pOrderBy, 0, 0); 2076 addr = sqlite3VdbeAddOp3(v, OP_Compare, regNewPeer, regPeer, nPeer); 2077 sqlite3VdbeAppendP4(v, (void*)pKeyInfo, P4_KEYINFO); 2078 addrJump = sqlite3VdbeAddOp3(v, OP_Jump, addr+2, 0, addr+2); 2079 VdbeCoverage(v); 2080 }else{ 2081 addrJump = 0; 2082 } 2083 windowAggFinal(pParse, pMWin, pMWin->eStart==TK_CURRENT); 2084 if( addrGoto ) sqlite3VdbeJumpHere(v, addrGoto); 2085 } 2086 2087 sqlite3VdbeAddOp2(v, OP_Rewind, pMWin->iEphCsr,sqlite3VdbeCurrentAddr(v)+3); 2088 VdbeCoverage(v); 2089 sqlite3VdbeAddOp2(v, OP_Gosub, regGosub, addrGosub); 2090 sqlite3VdbeAddOp2(v, OP_Next, pMWin->iEphCsr, sqlite3VdbeCurrentAddr(v)-1); 2091 VdbeCoverage(v); 2092 2093 sqlite3VdbeAddOp1(v, OP_ResetSorter, pMWin->iEphCsr); 2094 sqlite3VdbeAddOp3( 2095 v, OP_Copy, reg+pMWin->nBufferCol, pMWin->regPart, nPart+nPeer-1 2096 ); 2097 2098 if( addrJump ) sqlite3VdbeJumpHere(v, addrJump); 2099 } 2100 2101 /* Invoke step function for window functions */ 2102 windowAggStep(pParse, pMWin, -1, 0, reg, 0); 2103 2104 /* Buffer the current row in the ephemeral table. */ 2105 if( pMWin->nBufferCol>0 ){ 2106 sqlite3VdbeAddOp3(v, OP_MakeRecord, reg, pMWin->nBufferCol, regRecord); 2107 }else{ 2108 sqlite3VdbeAddOp2(v, OP_Blob, 0, regRecord); 2109 sqlite3VdbeAppendP4(v, (void*)"", 0); 2110 } 2111 sqlite3VdbeAddOp2(v, OP_NewRowid, pMWin->iEphCsr, regRowid); 2112 sqlite3VdbeAddOp3(v, OP_Insert, pMWin->iEphCsr, regRecord, regRowid); 2113 2114 /* End the database scan loop. */ 2115 sqlite3WhereEnd(pWInfo); 2116 2117 windowAggFinal(pParse, pMWin, 1); 2118 sqlite3VdbeAddOp2(v, OP_Rewind, pMWin->iEphCsr,sqlite3VdbeCurrentAddr(v)+3); 2119 VdbeCoverage(v); 2120 sqlite3VdbeAddOp2(v, OP_Gosub, regGosub, addrGosub); 2121 sqlite3VdbeAddOp2(v, OP_Next, pMWin->iEphCsr, sqlite3VdbeCurrentAddr(v)-1); 2122 VdbeCoverage(v); 2123 } 2124 2125 /* 2126 ** Allocate and return a duplicate of the Window object indicated by the 2127 ** third argument. Set the Window.pOwner field of the new object to 2128 ** pOwner. 2129 */ 2130 Window *sqlite3WindowDup(sqlite3 *db, Expr *pOwner, Window *p){ 2131 Window *pNew = 0; 2132 if( ALWAYS(p) ){ 2133 pNew = sqlite3DbMallocZero(db, sizeof(Window)); 2134 if( pNew ){ 2135 pNew->zName = sqlite3DbStrDup(db, p->zName); 2136 pNew->pFilter = sqlite3ExprDup(db, p->pFilter, 0); 2137 pNew->pFunc = p->pFunc; 2138 pNew->pPartition = sqlite3ExprListDup(db, p->pPartition, 0); 2139 pNew->pOrderBy = sqlite3ExprListDup(db, p->pOrderBy, 0); 2140 pNew->eType = p->eType; 2141 pNew->eEnd = p->eEnd; 2142 pNew->eStart = p->eStart; 2143 pNew->pStart = sqlite3ExprDup(db, p->pStart, 0); 2144 pNew->pEnd = sqlite3ExprDup(db, p->pEnd, 0); 2145 pNew->pOwner = pOwner; 2146 } 2147 } 2148 return pNew; 2149 } 2150 2151 /* 2152 ** Return a copy of the linked list of Window objects passed as the 2153 ** second argument. 2154 */ 2155 Window *sqlite3WindowListDup(sqlite3 *db, Window *p){ 2156 Window *pWin; 2157 Window *pRet = 0; 2158 Window **pp = &pRet; 2159 2160 for(pWin=p; pWin; pWin=pWin->pNextWin){ 2161 *pp = sqlite3WindowDup(db, 0, pWin); 2162 if( *pp==0 ) break; 2163 pp = &((*pp)->pNextWin); 2164 } 2165 2166 return pRet; 2167 } 2168 2169 /* 2170 ** sqlite3WhereBegin() has already been called for the SELECT statement 2171 ** passed as the second argument when this function is invoked. It generates 2172 ** code to populate the Window.regResult register for each window function and 2173 ** invoke the sub-routine at instruction addrGosub once for each row. 2174 ** This function calls sqlite3WhereEnd() before returning. 2175 */ 2176 void sqlite3WindowCodeStep( 2177 Parse *pParse, /* Parse context */ 2178 Select *p, /* Rewritten SELECT statement */ 2179 WhereInfo *pWInfo, /* Context returned by sqlite3WhereBegin() */ 2180 int regGosub, /* Register for OP_Gosub */ 2181 int addrGosub /* OP_Gosub here to return each row */ 2182 ){ 2183 Window *pMWin = p->pWin; 2184 2185 /* There are three different functions that may be used to do the work 2186 ** of this one, depending on the window frame and the specific built-in 2187 ** window functions used (if any). 2188 ** 2189 ** windowCodeRowExprStep() handles all "ROWS" window frames, except for: 2190 ** 2191 ** ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 2192 ** 2193 ** The exception is because windowCodeRowExprStep() implements all window 2194 ** frame types by caching the entire partition in a temp table, and 2195 ** "ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW" is easy enough to 2196 ** implement without such a cache. 2197 ** 2198 ** windowCodeCacheStep() is used for: 2199 ** 2200 ** RANGE BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING 2201 ** 2202 ** It is also used for anything not handled by windowCodeRowExprStep() 2203 ** that invokes a built-in window function that requires the entire 2204 ** partition to be cached in a temp table before any rows are returned 2205 ** (e.g. nth_value() or percent_rank()). 2206 ** 2207 ** Finally, assuming there is no built-in window function that requires 2208 ** the partition to be cached, windowCodeDefaultStep() is used for: 2209 ** 2210 ** RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 2211 ** RANGE BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING 2212 ** RANGE BETWEEN CURRENT ROW AND CURRENT ROW 2213 ** ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW 2214 ** 2215 ** windowCodeDefaultStep() is the only one of the three functions that 2216 ** does not cache each partition in a temp table before beginning to 2217 ** return rows. 2218 */ 2219 if( pMWin->eType==TK_ROWS 2220 && (pMWin->eStart!=TK_UNBOUNDED||pMWin->eEnd!=TK_CURRENT||!pMWin->pOrderBy) 2221 ){ 2222 VdbeModuleComment((pParse->pVdbe, "Begin RowExprStep()")); 2223 windowCodeRowExprStep(pParse, p, pWInfo, regGosub, addrGosub); 2224 }else{ 2225 Window *pWin; 2226 int bCache = 0; /* True to use CacheStep() */ 2227 2228 if( pMWin->eStart==TK_CURRENT && pMWin->eEnd==TK_UNBOUNDED ){ 2229 bCache = 1; 2230 }else{ 2231 for(pWin=pMWin; pWin; pWin=pWin->pNextWin){ 2232 FuncDef *pFunc = pWin->pFunc; 2233 if( (pFunc->funcFlags & SQLITE_FUNC_WINDOW_SIZE) 2234 || (pFunc->zName==nth_valueName) 2235 || (pFunc->zName==first_valueName) 2236 || (pFunc->zName==leadName) 2237 || (pFunc->zName==lagName) 2238 ){ 2239 bCache = 1; 2240 break; 2241 } 2242 } 2243 } 2244 2245 /* Otherwise, call windowCodeDefaultStep(). */ 2246 if( bCache ){ 2247 VdbeModuleComment((pParse->pVdbe, "Begin CacheStep()")); 2248 windowCodeCacheStep(pParse, p, pWInfo, regGosub, addrGosub); 2249 }else{ 2250 VdbeModuleComment((pParse->pVdbe, "Begin DefaultStep()")); 2251 windowCodeDefaultStep(pParse, p, pWInfo, regGosub, addrGosub); 2252 } 2253 } 2254 } 2255 2256 #endif /* SQLITE_OMIT_WINDOWFUNC */ 2257