zed icon indicating copy to clipboard operation
zed copied to clipboard

A novel data lake based on super-structured data

Results 435 zed issues
Sort by recently updated
recently updated
newest added

There's several open issues about the current limitations/bugs in the `join` implementation. This Epic groups them all together to ensure we've thought through all the angles when we dig into...

Epic

Repro is with Zed commit 1c906e4. With the steps described here, the issue reproduces about 50% of the time. In the video below, we see a `zed serve` started from...

bug

Pass expr.Context to aggregator methods.

@philrz ran into this issue when running zed auth login from an ssh shell into a Linux VM.

Repro is with Zed commit 30299b5. The [`join` tutorial](https://zed.brimdata.io/docs/tutorials/join/#embedding-the-entire-opposite-record) shows this example that runs ok. ``` $ zq -version Version: v1.2.0-28-g30299b5a $ cat embed-opposite.zed from ( file fruit.ndjson => sort...

bug

This ``` echo '`foo`' | zq -i zson - ``` should produce `"foo"` but instead it produces no output.

bug

In the words of the community user that initially requested the functionality: > Do you think it could be possible to develop an enhanced `put` operator to change the value...

community

The derived values produced by the [`over` operator](https://zed.brimdata.io/docs/language/operators/over) are top-level only. The language would benefit from a way to achieve something similar while descending recursively into objects. @mccanne has noted...

community

Currently if I do something like: ``` echo {} | zq -z 'yield "hello " + 2' - ``` my result is: ``` "incompatible types"(error) ``` We should update the...

Right now, map lookups return missing if the lookup value does not exactly match the type of the map key. This should be more robust with coercion etc.