Phil Rzewski
Phil Rzewski
Repro is with Zed commit 793260a. This is one we'd discussed internally but hadn't yet added. However, a community beta tester just reported having been confused by its absence, hence...
## tl;dr The `error("missing")` below is unexpected. In a group discussion there was consensus that this looks like a bug. ``` $ echo '"foo"' | zq -z 'op MyOp(r): (over...
## tl;dr In a directory containing multiple files ending in `.log`, a user executes a search like: ``` zq -i line '"test"' *.log ``` Alongside each search result the user...
## tl;dr I attempted this, but it's not currently possible. ``` $ zq 'const a = [null,2] yield coalesce(...a)' zq: could not invoke zq with a single argument because: -...
## tl;dr A community zync user had created a `switch`-based Zed program for a large search-and-replace task in their data transformation pipeline. They asked for some assistance in simplifying it...
## tl;dr Zed may benefit from having a "strict mode" option that requires programs to be written in canonical form (#2197) in order to be parsed and executed. ## Details...
In #4308 review, @mccanne noted: > We should add multiline comments (`/* ... */`) at some point. I think there was a problem a long time ago with the PEG...
## tl;dr A user attempted to call operators from within a user-defined `func`, but the parse error produced was generic and did not point at the operator. ## Details Repro...
## tl;dr A user asked in a community Slack thread: > Here's sort of a related situation I just ran across. Using the spread operator with a mismatch of array...
## tl;dr A user asked in a [community Slack thread](https://brimdata.slack.com/archives/CTSMAK6G7/p1720194738446819): >I presume this is more or less expected, that if there's a name collision between a type and a field,...