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? WIP adopt https://github.com/sqlparser-rs/sqlparser-rs/pull/1398 ## Rationale for this change Interval parsing is a bit of a mess, this is fixed I think in https://github.com/sqlparser-rs/sqlparser-rs/pull/1398,...

sql
sqllogictest

## Which issue does this PR close? Closes #12031 Closes https://github.com/apache/datafusion/pull/12033 ## Rationale for this change ## What changes are included in this PR? 1. When it comes to `StringVIew`...

functions

### Is your feature request related to a problem or challenge? We found that computing with Eq Kernel is much faster than RowConverter for `array_has` There are other functions that...

enhancement

Part of https://github.com/apache/datafusion/issues/11752 and https://github.com/apache/datafusion/issues/11790 Related: https://github.com/apache/datafusion/issues/11766 Currently, a call to `CONCAT` with a Utf8View datatypes induces a cast. After the change that fixes this issue, it should not. ```sql...

enhancement

## Which issue does this PR close? Closes #12150 & closes #11912 ## Rationale for this change ## What changes are included in this PR? Currently the StringView data type...

sqllogictest
functions

## Which issue does this PR close? Closes #12147 ## Rationale for this change ## What changes are included in this PR? * Added `map_keys` scalar function. Ref : https://duckdb.org/docs/sql/functions/map.html#map_valuesmap...

sqllogictest
common

## Which issue does this PR close? Closes #12103 ## Rationale for this change The general idea here is to provide the target schema fields to the logical plan builder...

sql
logical-expr
sqllogictest

## Which issue does this PR close? Closes #12148 ## Rationale for this change ## What changes are included in this PR? ## Are these changes tested? ## Are there...

sqllogictest
common

### Is your feature request related to a problem or challenge? Currently in demux::compute_partition_keys_by_row the only supported types for writing out partitions seems to be just `DataType::Utf8` and `DataType::Dictionary(_, _)`....

enhancement

### Describe the bug With https://github.com/apache/datafusion/issues/8708 we have simplified AggregateFunctions, however we haven't updated the documentation in all necessary places ### To Reproduce The how-to guide describes a way of...

bug