datafusion
datafusion copied to clipboard
Apache DataFusion SQL Query Engine
## Which issue does this PR close? Closes https://github.com/apache/datafusion/issues/12226 ## Rationale for this change The "to_date" function (https://github.com/apache/datafusion/blob/main/datafusion/functions/src/datetime/to_date.rs) fails to process dates that are later than year 2262. This is...
## Which issue does this PR close? Closes #12204 ## Rationale for this change ## What changes are included in this PR? ## Are these changes tested? ## Are there...
### Describe the bug The "to_date" function (https://github.com/apache/datafusion/blob/main/datafusion/functions/src/datetime/to_date.rs) fails to process dates that are later than year 2262. This is caused by the implementation detail that the conversion process uses...
## Which issue does this PR close? Closes #12079 and part of #11946 ## Rationale for this change ## What changes are included in this PR? ## Are these changes...
### Is your feature request related to a problem or challenge? The current implementation of `array_expression.rs` lacks support for the array_distance functionality. This feature is essential for users who want...
Part of https://github.com/apache/datafusion/issues/11752 and https://github.com/apache/datafusion/issues/11790 Currently, a call to `CONCAT_WS` with a Utf8View datatypes induces a cast. After the change that fixes this issue, it should not. ```sql query TT...
## Which issue does this PR close? Closes #11836 ## Rationale for this change Explained within ticket #11836 ## What changes are included in this PR? ## Are these changes...
### Is your feature request related to a problem or challenge? Similar to https://github.com/duckdb/duckdb/discussions/6717. It would be awesome if datafusion could support function chaining as well. Instead of ```sql SELECT...
Part of https://github.com/apache/datafusion/issues/11752 ### Describe the bug One of the last remaining issues causing test failures when we enable reading StringView by default in https://github.com/apache/datafusion/pull/12092 is as follows: ``` failures:...
### Describe the bug As written, the test assertion in https://github.com/apache/datafusion/blob/1fce2a98ef9c7f8dbd7f3dedcaf4aa069ab92154/datafusion/substrait/tests/cases/logical_plans.rs#L46-L50 should fail because DataFusion registers the `data` table with 5 fields [a, b, c, d, e] but the schema...