datafusion
datafusion copied to clipboard
Apache DataFusion SQL Query Engine
## Which issue does this PR close? Closes #10389 . ## Rationale for this change ## What changes are included in this PR? ## Are these changes tested? ## Are...
## Which issue does this PR close? Closes #7923 . Current Pull Request is an Experimental Demo for Validating the Feasibility of Logical Types ## Rationale for this change ##...
Remove `Expr::GetIndexedField` and `GetFieldAccess` and always use function `get_field` for indexing
### Is your feature request related to a problem or challenge? Discussion starts from https://github.com/apache/datafusion/issues/10181#issuecomment-2071274206 ### Describe the solution you'd like As title mentioned, use function instead of `Expr` ###...
Follow on to https://github.com/apache/datafusion/issues/10283 My (personal) North ⭐ : 1000 projects are built using DataFusion 📈 **It would be great for other contributors to DataFusion who plan non trivial work...
### Is your feature request related to a problem or challenge? While working on #10364, I found that changing the result in the rust test is quite painful. Currently, we...
DISCUSSION: remove `CREATE EXTERNAL TABLE` syntax: `DELIMITER`, `WITH HEADER ROW` and `COMPRESSION`
### Is your feature request related to a problem or challenge? `CREATE EXTERNAL TABLE` (see [docs](https://datafusion.apache.org/user-guide/sql/ddl.html#create-external-table)) has several syntax items that only make sense for certain formats, specifically ```text CREATE...
### Is your feature request related to a problem or challenge? This is a feature request to allow the ParquetExec type to accept a SchemaAdapter instead of having a fixed...
### Describe the bug Maybe related to #5535, but I couldn't find anything identical, so created a fresh issue. If this is a known bug and you think the fix...
### Describe the bug Since https://github.com/substrait-io/substrait/pull/537, the standard has declared that functions must be named with compound names consisting of both the function and its types. For example, for the...
### Is your feature request related to a problem or challenge? Part of https://github.com/apache/datafusion/issues/5637 One of the optimizer passes is "common subexpression elimination" that removes redundant computation However, as @peter-toth...