zed
zed copied to clipboard
A novel data lake based on super-structured data
`GET /events` has no test coverage. It should so we don't introduce more breakage like #3924.
Repro is with: * Zed commit 88ad6e9 * 12-core Intel-based Mac laptop * Test data described in #3959 Once a `zed serve -lake $HOME/.fdns` is running, the repro steps to...
We should look into increasing the throughput of the add vector operation by adding parallelism. Currently, it is run synchronously for each object in the list to add. Since vectorization...
The zson spec defines a numeric as [0-9]+ but incorrectly uses unicode.IsDigit() is several places. We should fix this with an isDigit() function that checks `>='0' &&
Repro is with Zed commit 3953933. I was attempting to use a forked query in the Brim app, but it seemed to hang. It didn't hang when I executed the...
The Zed langauge should allow you to specify a IEEE NaN, Inf, etc. Currently you get this as they are interpreted as field refs: ``` % echo null | zq...
Repro is with Zed commit e0683b10. The filing of issue #3987 from a community member caused us to look again at the changes from #3809. To recap, before that change,...
It’d be great if the `zed` CLI had some option that made it send all its requests with Content-Type of ZSON rather than the binary ZNG it does currently. Right...
Fix zson marshaling of Go net.IP values to avoid a round-trip through a string rep. It's not obvious and easy how to do this (see thread in #3991) though it's...
A user has expressed a requirement to do a `zed delete` with a richer `-where` query, which would be an enhancement over the current limitation of [just a single comparison...