mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-06 08:35:55 +00:00
This PR adds support for a `having` argument in a `GroupBy` query. Usage looks like this: ``` GroupBy(Rows(a), having=Condition(count > 10)) GroupBy(Rows(a), aggregate=Sum(field=b), having=Condition(sum > 100)) ``` |
||
|---|---|---|
| .. | ||
| ast.go | ||
| ast_test.go | ||
| doc.go | ||
| parser.go | ||
| parser_test.go | ||
| pql.peg | ||
| pql.peg.go | ||
| pqlpeg_test.go | ||
| token.go | ||