-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
distsql: roundtrip to string does not respect precedence of ::: and - #15617
Comments
For known-limitations, we've been setting the milestone to when we expect the issue to be fixed. |
This is still an issue:
|
I'm still looking at this, but the problem is that via the distsql path -9223372036854775808 is converted to an intVal type, while using the normal path it is converted to an int64Val |
The problem is that we are serializing the filter expression as This doesn't work:
The correct serialization would be |
I can take this, I know what piece of code needs to be fixed. |
Correcting the serialization of negative integers from `-5:::INT` to `'-5':::INT`. Fixes cockroachdb#15617.
Correcting the serialization of negative integers from `-5:::INT` to `'-5':::INT`. Fixes cockroachdb#15617.
Correcting the serialization of negative integers from `-5:::INT` to `'-5':::INT`. Fixes cockroachdb#15617.
Run
and get
Turn off distsql and the problem goes away.
The text was updated successfully, but these errors were encountered: