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
The to_char function in DataFusion returns NULL when formatting valid DATE values
cargo run -p datafusion-cli -- -c "SELECT to_char(date_column, '%Y-%m-%d') FROM (VALUES (NULL), (DATE '2020-09-01')) AS t(date_column)"
+-----------------------------------------+ | to_char(t.date_column,Utf8("%Y-%m-%d")) | +-----------------------------------------+ | NULL | | NULL | +-----------------------------------------+
+-----------------------------------------+ | to_char(t.date_column,Utf8("%Y-%m-%d")) | +-----------------------------------------+ | NULL | | 2020-09-01 | +-----------------------------------------+
I discovered this bug while trying to add this slt test
SELECT to_char(date_column, '%Y-%m-%d') FROM (VALUES (DATE '2020-09-01'), (NULL) ) AS t(date_column);
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
The to_char function in DataFusion returns NULL when formatting valid DATE values
To Reproduce
cargo run -p datafusion-cli -- -c "SELECT to_char(date_column, '%Y-%m-%d') FROM (VALUES (NULL), (DATE '2020-09-01')) AS t(date_column)"
Expected behavior
Additional context
I discovered this bug while trying to add this slt test
The text was updated successfully, but these errors were encountered: