❯ super -z -c "[1, error('missing'),'a'] | over this | collect(this)"
[1,"a"]
Actually, adding null to this input array on the CLI just hangs, and I can't even Ctrl-C out, I had to kill the process.
❯ super -z -c "[1, error('missing'),'a',null] | over this | collect(this)"
Some instances with null are ok
❯ super -z -c "[null] | over this | collect(this)"
null
❯ super -z -c "[null,1] | over this | collect(this)"
[1]
# this one hangs:
❯ super -z -c "[null,1,'a'] | over this | collect(this)"
The hang obviously feels like a bug, but I'm not sure what the expected behavior is with collect and error("missing") and null
Actually, adding
nullto this input array on the CLI just hangs, and I can't even Ctrl-C out, I had to kill the process.❯ super -z -c "[1, error('missing'),'a',null] | over this | collect(this)"Some instances with null are ok
The hang obviously feels like a bug, but I'm not sure what the expected behavior is with
collectanderror("missing")andnull