-
Notifications
You must be signed in to change notification settings - Fork 753
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
refactor: use binary for non-utf8 string type #14235
Conversation
db6c55a
to
b596bc1
Compare
tests/sqllogictests/suites/stage/formats/parquet/parquet_field_types.test
Outdated
Show resolved
Hide resolved
tests failed in py-binding |
Are these appropriate behaviors? @b41sh @sundy-li PS:
|
Schema is binary because parquet did not have variant datatype, so we use binary to store variant. But if the parquet file is inside fuse engine, it'll show as JSON since we have variant datatype. |
It's ready for review |
I hereby agree to the terms of the CLA available at: https://docs.databend.com/dev/policies/cla/
Summary
to_base64(String) -> String
->to_base64(Binary) -> String
from_base64(String) -> String
->from_base64(String) -> Binary
to_hex(String) -> String
->to_hex(Binary) -> String
from_hex(String) -> String
->from_hex(String) -> Binary
DataType::String
Tests
Type of change
This change is