datafusion icon indicating copy to clipboard operation
datafusion copied to clipboard

Apache DataFusion SQL Query Engine

Results 1065 datafusion issues
Sort by recently updated
recently updated
newest added

## 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...

functions

## 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...

substrait

### 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...

bug

## 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...

documentation
sqllogictest
functions

### 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...

enhancement

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...

enhancement

## 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...

sqllogictest
functions

### 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...

enhancement

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:...

bug

### 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...

bug