File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Release Notes
22
3+ ## v0.13.1
4+
5+ * Add support for grouping sets, which are used in SQL to calculate totals
6+ and subtotals. The ` Group() ` node accepts an optional parameter ` sets ` ,
7+ which is either a grouping mode indicator ` :cube ` or ` :rollup ` , or
8+ a collection of grouping key sets ` Vector{Vector{Symbol}} ` . Examples:
9+
10+ ``` julia
11+ From (:person ) |> Group (:year_of_birth , sets = :cube )
12+
13+ From (:person ) |> Group (:year_of_birth , :month_of_birth , sets = :rollup )
14+
15+ From (:person ) |> Group (:year_of_birth , :gender_concept_id ,
16+ sets = [[:year_of_birth ], [:gender_concept_id ]])
17+ ```
18+
19+
320## v0.13.0
421
522This release introduces some backward-incompatible changes. Before upgrading,
Original file line number Diff line number Diff line change 11name = " FunSQL"
22uuid = " cf6cc811-59f4-4a10-b258-a8547a8f6407"
33authors = [" Kirill Simonov <xi@resolvent.net>" , " Clark C. Evans <cce@clarkevans.com>" ]
4- version = " 0.13.0 "
4+ version = " 0.13.1 "
55
66[deps ]
77DBInterface = " a10d1c49-ce27-4219-8d33-6db1a4562965"
You can’t perform that action at this time.
0 commit comments