-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
Presto does not support Chinese by parquet #23969
Comments
Hi @i95271116 |
I tested both presto-server-0.216 and presto-server-0.285.1, but the problem still exists. |
In the where condition, for Chinese characters, "where trim(‘column_name’)"=‘切断压力’ needs to be added |
Or it is normal to use "SELECT * from |
Hi @i95271116. Can you elaborate the issue? For example, which connector do you use, and what are the steps to reproduce the problem. I cannot reproduce it on Iceberg connector with parquet format. |
For example :
Select * from table where col = '中文'.
For Now I must write sql like this if field contains Chinese.
Select * from table where to_utf8(col) = to_utf8('中文')
my version is 0.234.2-add98eb
The text was updated successfully, but these errors were encountered: