1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

For queries of the form "SELECT p, max(q) FROM t1", the value of column p

returned is the one on the same row that holds the maximum value of q.

FossilOrigin-Name: adb29232b659c5332b6841776372407fcc350b08
This commit is contained in:
drh
2012-02-02 17:35:43 +00:00
parent a451017d62
commit 7a95789c0c
7 changed files with 50 additions and 14 deletions

View File

@@ -258,6 +258,7 @@ struct sqlite3_context {
Mem *pMem; /* Memory cell used to store aggregate context */
int isError; /* Error code returned by the function. */
CollSeq *pColl; /* Collating sequence */
int skipFlag; /* Skip skip accumulator loading if true */
};
/*