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

In #5017 it was discussed how we lacked a ztest for certain functionality because it's difficult to cover with ztest, and in an offline discussion with @nwt he confirmed this...

test

Repro is with Zed commit 88f40ed and was uncovered during a [PR review for a docs update](https://github.com/brimdata/zed/pull/4811#discussion_r1372083607). Start this simple program that listens on a socket, accepts an incoming connection,...

bug

A community user's recent question helped us realize some needed improvements to the helper functions, operators, and docs for working with values of Zed's `net` type. ## Details At the...

community

The opening text of #2901 describes how it was a stopgap effort to give us some test coverage on docs examples where we want to show abbreviated Zed syntax or...

test

The various zed commands all support outputting data in any desired format. The command help should describe this output uniformly, e..g, having some help text blurb that refers to the...

Repro is with Zed commit 2a2c98e. ``` $ zq -version Version: v1.12.0-24-g2a2c98e9 $ echo '2024-01-01T00:00:00Z' | zq 'yield this+1d,this-1d' - 2024-01-02T00:00:00Z 54y12d ``` In @mccanne's words: > time-dur should be...

bug

As proposed by @mccanne: > In playing with times, I think we should take a little time to invest in helper functions, e.g., `year()`, `month()`, `day()`.

Repro is with Zed commit 6ff0586. In a [recent Slack thread](https://brimdata.slack.com/archives/C03MW6XT7HC/p1701288001536269), a community user was getting help debugging their `join` use case. We were building off this working example of...

community

Update the put operator to allow assignments to elements in an array or set. Closes #4798

Repro is with Zed commit 48342ce. Start from the simple example in the [`nest_dotted()` docs](https://zed.brimdata.io/docs/language/functions/nest_dotted). ``` $ zq -version Version: v1.11.1-3-g48342ce9 $ echo '{"a.b.c":"foo"}' | zq -Z 'yield nest_dotted()' -...