Noah Treuhaft

Results 12 comments of Noah Treuhaft

#4132 fixed this. The command in the previous comment now works as expected. ```console $ zq -version Version: v1.2.0-85-ge9624c3b $ echo '|{"one":1}|' | go run ./cmd/zq 'yield this["one"]' - 1...

To fix this, we'll need to include SIGPIPE in the list of signals for signal.NotifyContext.

#4084 fixes the panic but provides an uninformative error, so I don't consider that a fix. ```console $ echo '{greeting:"hello"}' | zq -z 'yiel "bigtext = ${upper(greeting)}"' - zq: JSON...

@muthu-rk: We should have something for you on this in the next 24 hours.

@muthu-rk: We've merged #3914, which should get you past this problem. We're also working on a couple more related changes: 1. A flag to let you set that limit from...

#4132 fixed this. Both commands in the previous comment now work as expected. ```console $ zq -version Version: v1.2.0-85-ge9624c3b $ echo '{"level0":{"level1":{"level-2":{"value":"original value"}}}}' | zq 'put level0.level1["level-2"].value:="2-changed"' - {level0:{level1:{"level-2":{value:"2-changed"}}}} $...

@philrz: With #4134 and #4135, this should be fixed for both aggregations and sorts, but I'll leave closing it to you.

I've signed the individual CLA.

> We need to define a schema for specifying a collection of resources. This specification will also need to support dependencies amongst resources to be created. This will be composed...

I've run into this problem too. It's caused by a message containing a null value for a nullable bytes field. Here's a script to reproduce it: ```sh #!/bin/sh -ex curl...