featurebase/pql
Travis 24d02c1920 Add "having" support to GroupBy() queries
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))
```
2019-11-28 18:40:57 -06:00
..
ast.go Add "having" support to GroupBy() queries 2019-11-28 18:40:57 -06:00
ast_test.go v2.0.0 2019-10-08 14:56:17 -06:00
doc.go Apply Apache License 2.0 2017-04-28 14:22:03 -05:00
parser.go plugins and precomputed data 2019-11-12 12:14:29 -06:00
parser_test.go plugins and precomputed data 2019-11-12 12:14:29 -06:00
pql.peg allow floats in PQL queries for decimal fields 2019-11-13 10:07:24 -06:00
pql.peg.go allow floats in PQL queries for decimal fields 2019-11-13 10:07:24 -06:00
pqlpeg_test.go allow floats in PQL queries for decimal fields 2019-11-13 10:07:24 -06:00
token.go allow floats in PQL queries for decimal fields 2019-11-13 10:07:24 -06:00