We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
initcap
Make initcap function work with Unicode character.
Current behavior of DataFusion:
select initcap('đẹp đẽ êm ả édouard'); --đẹP đẽ êM ả éDouard select initcap('ñandú árbol éxito'); --ñAndú áRbol éXito select initcap('олег иванович'); --олег иванович select initcap('íslensku þjóðarinnar'); --íSlensku þJóðArinnar select initcap('ελληνική επιστήμη'); --ελληνική επιστήμη
Expected behavior: (Postgres)
select initcap('đẹp đẽ êm ả édouard'); --Đẹp Đẽ Êm Ả Édouard select initcap('ñandú árbol éxito'); --Ñandú Árbol Éxito select initcap('олег иванович'); --Олег Иванович select initcap('íslensku þjóðarinnar'); --Íslensku Þjóðarinnar select initcap('ελληνική επιστήμη'); --Ελληνική Επιστήμη
No response
Found in comment of @Dandandan
The text was updated successfully, but these errors were encountered:
take
Sorry, something went wrong.
tlm365
Successfully merging a pull request may close this issue.
Is your feature request related to a problem or challenge?
Make
initcap
function work with Unicode character.Describe the solution you'd like
Current behavior of DataFusion:
Expected behavior: (Postgres)
Describe alternatives you've considered
No response
Additional context
Found in comment of @Dandandan
The text was updated successfully, but these errors were encountered: