zed
zed copied to clipboard
A novel data lake based on super-structured data
When the `stderr` output of the `debug` operator is redirected to a file, its ZSON contents may be colorized. This seems undesirable. ## Details Repro is with Zed commit 2e2c19b....
At the time this issue is being filed, Zed is at commit a2626a7. I sometimes reach for `text` output mode in the CLI tools such as when grabbing individual values...
## tl;dr A community user recently found the Zed language allowed them to write a lateral subquery preceded by `over ... with this` and the resulting overlapping uses of `this`...
While working on porting functions to work in the vectors I surprised to find that almost none of the functions properly handle union values: ``` $ echo '"foo"((int64,string))' | zq...
It's not currently possible to specify a dynamic field name in a record expression, such as my attempt here to get to output `{hi:"bye"}`. ``` $ echo '{my_key: "hi"}' |...
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...
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 r =>...
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 would like...
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: - a file...
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 for maintainability....