aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-03-04 21:32:23 +0100
committerSébastien Dailly <sebastien@dailly.me>2025-03-06 20:57:10 +0100
commite74106cc7b236fac4913b192af1faab688736f33 (patch)
tree90829d77f54fc1d63e192678f8dbd39cb5707ff4 /lib
parent81db1bfd580791910646525e30bc45af34533987 (diff)
Added the possibility to filter a group function without giving a group
Diffstat (limited to 'lib')
-rw-r--r--lib/expression/query.ml7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/expression/query.ml b/lib/expression/query.ml
index 89c9e0a..e648daf 100644
--- a/lib/expression/query.ml
+++ b/lib/expression/query.ml
@@ -148,7 +148,12 @@ module Query = TypeBuilder.Make (struct
unit =
fun nested formatter (expressions, order, range) ->
match (expressions, order) with
- | [], _ -> ()
+ | [], [] -> ()
+ | [], _ ->
+ Format.fprintf formatter " OVER (ORDER BY %a%a)"
+ (print_expression nested) order
+ (Format.pp_print_option (fun f v -> Format.fprintf f "%s" v))
+ range
| _, [] ->
Format.fprintf formatter " OVER (PARTITION BY %a%a)"
(print_expression nested) expressions