I meeting a decode error (in arroyo-worker), when I input sql with very long predicate expr in When clause. (in our case, we have converted filter node to another extension node).
I dig out that the error is throwed from prost crate (see below code). and this limit is only available when missing no-recursion-limit feature in Cargo.toml.
I meeting a decode error (in arroyo-worker), when I input sql with very long predicate expr in When clause. (in our case, we have converted filter node to another extension node).
I dig out that the error is throwed from
prost
crate (see below code). and this limit is only available when missingno-recursion-limit
feature inCargo.toml
.https://github.com/tokio-rs/prost/blob/d38072f5962e29b0cb1ebef6038510c54fa13ca7/prost/src/encoding.rs#L82-L90
Whether add
no-recursion-limit
feature to handle this case?