aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2024-08-31 20:09:37 +0000
committerdrh <>2024-08-31 20:09:37 +0000
commita239ece3781403dd43d0f4db048741a2c8184f37 (patch)
tree098bb0370013e0d6d8e144aa92ea055f1d8769e8 /src/sqliteInt.h
parentc1042cd133c38e75742efd74fb50055d6c17f2c1 (diff)
downloadsqlite-a239ece3781403dd43d0f4db048741a2c8184f37.tar.gz
sqlite-a239ece3781403dd43d0f4db048741a2c8184f37.zip
Demonstration of how ordered-set aggregates might be parsed and integrated
into the existing parse tree, should we decide to support them. FossilOrigin-Name: ef9777890001ba0122d3add799795e118fd87243f42731ab84d4748b67605647
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 0dab59f7a..dcadec78d 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -3049,7 +3049,8 @@ struct Expr {
** EP_Unlikely: 134217728 times likelihood
** TK_IN: ephemeral table holding RHS
** TK_SELECT_COLUMN: Number of columns on the LHS
- ** TK_SELECT: 1st register of result vector */
+ ** TK_SELECT: 1st register of result vector
+ ** TK_FUNCTION: Uses ordered-set aggregate syntax */
ynVar iColumn; /* TK_COLUMN: column index. -1 for rowid.
** TK_VARIABLE: variable number (always >= 1).
** TK_SELECT_COLUMN: column of the result vector */