Releases: hasura/ndc-duckdb
Releases · hasura/ndc-duckdb
v0.2.0
Implement Aggregates
-
Basic Aggregates
- star_count
- single_column
- single_column distinct
-
Numeric Aggregates:
- sum
- avg
- max
- min
- stddev
- stddev_samp
- stddev_pop
- variance
- var_samp
- var_pop
-
String Aggregates:
- group_concat
- group_concat_distinct
- group_concat_include_nulls
-
Previously, LIKE would automatically wrap the string with %% to do a full-text search, now we allow users to use % on their own so LIKE has full functionality.
-
Add BigDecimal scalar type for arbitrary precision decimals so aggregation functions like SUM don't overflow
v0.1.8
- Enable Aggregates
v0.1.7
- Fix filtering across relationships
v0.1.6
- Fix github workflow
v0.1.5
- Fix order by LOWER cast
v0.1.4
- Update to fix a bug to add support for UBigInt, HugeInt, UHugeInt
- Add support for Timestamps with Timezone
- Fix object type mapping on JOINS
- Cast ORDER BY columns to lowercase so that field sorting yields A a B b rather than A B a b
v0.1.3
- Bugfix for query builder
v0.1.2
- Fix packaging
v0.1.1
- Add table comments to descriptions
- Special case Timestamps and BigInt filtering
v0.1.0
- Update Documentation for ndc-hub