Skip to content

Releases: hasura/ndc-duckdb

v0.2.0

16 Jan 06:03
Compare
Choose a tag to compare

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

16 Jan 02:02
Compare
Choose a tag to compare
  • Enable Aggregates

v0.1.7

16 Jan 01:51
Compare
Choose a tag to compare
  • Fix filtering across relationships

v0.1.6

15 Jan 23:59
Compare
Choose a tag to compare
  • Fix github workflow

v0.1.5

15 Jan 23:38
Compare
Choose a tag to compare
  • Fix order by LOWER cast

v0.1.4

09 Jan 20:24
Compare
Choose a tag to compare
  • 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

08 Jan 19:02
Compare
Choose a tag to compare
  • Bugfix for query builder

v0.1.2

08 Jan 18:14
Compare
Choose a tag to compare
  • Fix packaging

v0.1.1

08 Jan 18:09
Compare
Choose a tag to compare
  • Add table comments to descriptions
  • Special case Timestamps and BigInt filtering

v0.1.0

22 Aug 17:14
Compare
Choose a tag to compare
  • Update Documentation for ndc-hub