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 #12154. ## Rationale for this change Besides `projections`, I also handle the `filters` and `fetch` for TableScan. ## What changes are included...

sql
logical-expr

### Is your feature request related to a problem or challenge? Arrow contains a [`MapArray`](https://docs.rs/arrow/latest/arrow/array/struct.MapArray.html) DataFusion has incomplete support for this type; This ticket tracks adding new fetures. Please add...

enhancement

## Which issue does this PR close? closes https://github.com/apache/datafusion/issues/11570 ## Rationale for this change ## What changes are included in this PR? Add an optimization opration for case like: ```...

physical-expr

### Is your feature request related to a problem or challenge? Consider the following case: ```rust let ctx = SessionContext::new(); ctx.sql("create table t1 (a int, b int)").await?; ctx.sql("insert into t1...

enhancement

### Is your feature request related to a problem or challenge? In most databases, the map type only allows unique keys. Refer to the behavior of DuckDB: ``` D select...

enhancement

### Is your feature request related to a problem or challenge? Part of https://github.com/apache/datafusion/issues/11752 We are trying to enable DataFusion to use StringViewArray by default. If we do that it...

enhancement

### Describe the bug Native StringView support for `octet_length()` has been added https://github.com/apache/datafusion/issues/11858 However it's not working for StringView column inside table See reproducer in datafusion-cli (Compiled from latest main...

bug

### Is your feature request related to a problem or challenge? Description | Return a list of all values in the map. -- | -- Example | map_values(map([100, 5], [42,...

enhancement

### Is your feature request related to a problem or challenge? Description | Return a list of all keys in the map. -- | -- Example | map_keys(map([100, 5], [42,43]))...

enhancement

## Which issue does this PR close? I think this should close #4028 ## Rationale for this change As far as I can tell, this follows the recommendations stated in...

physical-expr
core
common
proto