Releases: devrev/meerkat
Releases · devrev/meerkat
Added support for primitive empty
v0.0.820 fix: fallback to null check for non-array types in arrayEmpty/arrayNo…
Added support for empty array filter
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
What's Changed
- ISS-263625: [Meerkat] add comprehensive tests by @shriram-devrev in #170
- tests(*): added regression tests for . delimiter based chanegs by @zaidjan-devrev in #218
Full Changelog: v0.0.817...v0.0.818
What's Changed
- ISS-263625: [Meerkat] add comprehensive tests by @shriram-devrev in #170
- tests(*): added regression tests for . delimiter based chanegs by @zaidjan-devrev in #218
- ISS-268999: add aliasing to solve Ambiguous column reference by @shriram-devrev in #219
Full Changelog: v0.0.817...v0.0.818
Add number array filtering support
Add number array filtering support
Array unnest row drop error fix
Array unnest row drop error fix
Array unnest row drop fixed
Array unnest row drop fixed
v0.0.814
What's Changed
- migrating to new duckdb 143 by @senthilb-devrev in #203
Full Changelog: v0.0.813...v0.0.814
Add sort support for unprojected fields
Add sort support for unprojected fields
Remove Dot notation options
Remove Dot notation options
feat: Add support for CONTAINS expression in join sql
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