Skip to content

Releases: devrev/meerkat

Added support for primitive empty

10 Apr 11:56
4c4f45a

Choose a tag to compare

v0.0.820

fix: fallback to null check for non-array types in arrayEmpty/arrayNo…

Added support for empty array filter

10 Apr 10:41
2115504

Choose a tag to compare

feat: add arrayEmpty and arrayNotEmpty filter operators (#234)

* added regression tests for . delimiter based chanegs

* testing repsonse instead of sql

* feat: add arrayEmpty and arrayNotEmpty filter operators

The existing `set`/`notSet` operators generate `IS NOT NULL`/`IS NULL`,
which doesn't account for empty arrays (`[]`). These new operators
generate correct DuckDB SQL for array columns:
- `arrayEmpty`:    (col IS NULL OR len(col) = 0)
- `arrayNotEmpty`: (col IS NOT NULL AND len(col) > 0)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* retrigger

* revreted uneeded changes

* add integration tests for arrayEmpty and arrayNotEmpty operators

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* test: add arrayEmpty and arrayNotEmpty to data-driven test fixtures

work-item: ISS-263625

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* chore: bump meerkat-core, meerkat-node, meerkat-browser to 0.0.126

work-item: ISS-263625

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

v0.0.818

16 Mar 06:15
447e2dd

Choose a tag to compare

What's Changed

Full Changelog: v0.0.817...v0.0.818

What's Changed

Full Changelog: v0.0.817...v0.0.818

Add number array filtering support

05 Mar 08:47
515abd8

Choose a tag to compare

Add number array filtering support

Array unnest row drop error fix

26 Feb 11:39
d1f8ea8

Choose a tag to compare

Array unnest row drop error fix

Array unnest row drop fixed

26 Feb 09:28
f10d2c0

Choose a tag to compare

Array unnest row drop fixed

v0.0.814

19 Feb 07:14
70de657

Choose a tag to compare

What's Changed

Full Changelog: v0.0.813...v0.0.814

Add sort support for unprojected fields

17 Feb 08:33
26f92f0

Choose a tag to compare

Add sort support for unprojected fields

Remove Dot notation options

17 Feb 07:13
c318c68

Choose a tag to compare

Remove Dot notation options

feat: Add support for CONTAINS expression in join sql

13 Feb 06:12
6ec22a0

Choose a tag to compare

What's Changed

  • ISS-256326: add support for CONTAINS in join sql by @shriramchandirasekaran-beep in #193

New Contributors

  • @shriramchandirasekaran-beep made their first contribution in #193

Full Changelog: v0.0.810...v0.0.118