/ Changes On Branch output-minmax-row
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch output-minmax-row Excluding Merge-Ins

This is equivalent to a diff from 0bc594e861 to f27c7b4fb1

2012-02-02
18:46
When non-aggregate columns occur in an aggregate query with a single min() or max(), then the values of the non-aggregate columns are taken from one of the rows that was the min() or max(). (check-in: fa13edd39c user: drh tags: trunk)
18:42
Fix a problem with NULL handling in aggregate min/max when returning values from the row containing the min or max. (Closed-Leaf check-in: f27c7b4fb1 user: drh tags: output-minmax-row)
17:35
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. (check-in: adb29232b6 user: drh tags: output-minmax-row)
15:50
Data structure cleanup. Remove unused fields. Rearrange other files for tighter packing and reduced memory usage. (check-in: 0bc594e861 user: drh tags: trunk)
03:38
Simplified array allocation in the IdList and AggInfo objects. (check-in: 25df2a7458 user: drh tags: trunk)

Changes to src/func.c.

Changes to src/select.c.

Changes to src/vdbe.c.

Changes to src/vdbeInt.h.

Changes to test/e_select.test.

Added test/minmax4.test.