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

As a user, the field name `cast` seems unexpected here. ``` $ echo '{x:1, y:2}' | zq 'cut x,float64(y)' - {x:1,cast:2.} ``` ## Details Repro is with Zed commit b8fe312....

## tl;dr The output from the following seems incorrect compared to when we compute each part separately and combine. ``` this[grep(one*, x) ? "one" : "two"]:=x ``` ## Details Repro...

bug

A user may want to craft a pipeline that intentionally stops processing the input stream when a particular condition is met. ## Details At the time this issue is being...

community

## tl;dr This error message speaks of an expression/integer, but it actually takes a compile-time constant expression that evaluates to a positive integer, which is more limiting. ``` $ zq...

community

## tl;dr As a user, this result seems incorrect to me. ``` $ echo '0.99 (float32)' | zq -Z 'yield this > 0.99' - true ``` ## Details Repro is...

## tl;dr This gives the one expected line of output, but then hangs and does not exit. ``` $ echo '3 1 4 1 5 9 2 6 5 3...

bug

The following still produces ZSON output despite the `-f zng`. ``` $ echo '{ts:2024-08-14T19:12:51Z}' | zq -f zng - {ts:2024-08-14T19:12:51Z} ``` ## Details Repro is with Zed commit b9388c4. In...

bug

This hangs for me: ``` $ for n in $(seq 1 701); do echo "{ts:$n}"; done | zq -z 'fork (=>pass =>pass) | merge this' - {ts:1} {ts:1} {ts:2} {ts:2}...

bug

CI recently had a [test failure](https://github.com/brimdata/zed/actions/runs/10865226064/job/30151453342) in [lake/journal/journal_test.go](https://github.com/brimdata/zed/blob/main/lake/journal/journal_test.go). Upon checking with @nwt I was informed: > It's a bug in the test, not the implementation, and so it isn’t user-facing....

bug
test

The top operator is limited to field references. It should should accept arbitrary expressions like the sort operator does. It should also allow selection of either ascending or descending order...