Phil Rzewski
Phil Rzewski
## tl;dr A strict reading of the [`over` operator docs](https://zed.brimdata.io/docs/language/operators/over) indicates the following record should probably be output as is, but instead its top level is broken out into a...
## tl;dr A community user attempted `sort 'Source Zone','Destination Zone'` thinking this was the right way to specify field names that contained spaces. Their `sort` had no effect and the...
## tl;dr With some operators (e.g., `join`) it's possible for a query to fail due to a panic in the lake service, but the `zed` client just sees no query...
When reacting to the [`debug` operator](https://zed.brimdata.io/docs/next/language/operators/debug) in its current form, @mccanne found himself wishing it could take a flowgraph rather than expression to massage its output. I know this idea...
Repro is with Zed commit 963863b. A community zync user originally surfaced this issue. The inquiry in their own words: > While doing some data exploration, I noticed that CSV...
## tl;dr A community zync user mentioned the following in a Zui context, though it seems addressing it would likely have to start at the Zed layer since that's what...
## tl;dr When running `zed manage -monitor`, if one of the targets specified in a `-pool` option doesn't exist, the command exits. Since this is designed to be a long-running...
Repro is with Zed commit 48021d7. The [`nest_dotted` function docs](https://zed.brimdata.io/docs/next/language/functions/nest_dotted) set expectations that it's only intended to be used on records, so I'm not surprised this failed. But a panic...
## tl;dr Zed's [`strftime` function](https://zed.brimdata.io/docs/next/language/functions/strftime) currently can only print offsets without colons (e.g., `2024-08-14T12:12:51-0700`). However, [RFC 3339](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6) (which ZSON time literals are based on) only support offsets with colons (e.g.,...
## tl;dr In a recent [community Slack thread](https://brimdata.slack.com/archives/CTSMAK6G7/p1719801076425009), a user was manipulating an array in an `over` scope in a way that required knowing the index of each value. I...