-
Notifications
You must be signed in to change notification settings - Fork 579
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
Different display format for array/struct with pg #4769
Comments
There are more differences to fix. Background: In PostgreSQL, boolean is shown differently when displayed as output (
When inside array or struct, it should use the shorter output:
Actual (RisingWave):
Another issue is the output of
Actual (RisingWave):
Moreover, PostgreSQL also shows
But in RisingWave:
Last thing: the quoting should also be considered when outputting a struct, and when casting from a string to an array or struct:
|
In PG, strings with spaces and empty string are displayed with
""
In risingwave:
Do we want to follow this behavior?
The text was updated successfully, but these errors were encountered: