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 #4680 ## Rationale for this change ## What changes are included in this PR? ## Are these changes tested? ## Are there...

logical-expr

## Which issue does this PR close? ref #6768 ## Rationale for this change Some projection can't be pushed down left input or right input of hash join because `filter`...

core
sqllogictest

## Which issue does this PR close? Part of https://github.com/apache/arrow-datafusion/issues/8913 ## Rationale for this change 1. The `TreeNode.rewrite()` / `TreeNodeRewriter` is very inconsistent with other `TreeNode` apply / visit functions:...

sql
logical-expr
physical-expr
optimizer
core

### Describe the bug I'am testing DataFusion for using it in a system which has several thousand columns and billions of rows. I'm excited about the flexibility and possibilities this...

bug

### Is your feature request related to a problem or challenge? As part of making DataFusion even more customizable (https://github.com/apache/arrow-datafusion/issues/8045), it is valuable to let system designers mix and match...

enhancement

### Is your feature request related to a problem or challenge? Databases / ETL solutions built on top of DataFusion can use UDFs (in their various forms) to extend the...

enhancement

### Is your feature request related to a problem or challenge? log10('-Infinity'); log2('-Infinity'); power('Infinity',2) As above, using the + infinity function in some math functions will report an error in...

enhancement

### Describe the bug ``` select lag(a) over () as x1 from (select 2 id, 'b' a union all select 1 id, null a union all select 3 id, null);...

bug

### Is your feature request related to a problem or challenge? the 'unnest' table function reads an array or list, and out put a table ### Describe the solution you'd...

enhancement

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

core