datafusion
datafusion copied to clipboard
Apache DataFusion SQL Query Engine
### Is your feature request related to a problem or challenge? Currently we can build struct table like this ``` statement ok create table t as values (struct(1, 'a')), (struct(2,...
## Which issue does this PR close? Closes #10261 Closes #10241 Part of #10507 ## Rationale for this change ## What changes are included in this PR? ## Are these...
It would be great if datafusion had out-of-the-box support for skipping comment lines. While non of this is "standardized" many CSV readers support skipping full comment lines. An often used...
## Which issue does this PR close? Closes #5735. Add a small constraint for each UDF to have the same input and output size, with "arrow_typeof" as an exception 2...
## Which issue does this PR close? Relate #10040 ## Rationale for this change ## What changes are included in this PR? ## Are these changes tested? ## Are there...
## Which issue does this PR close? Closes #10246 ## Rationale for this change Add `static_name()` method to make the name of an execution plan accessible without constructing the struct....
It seems like DataFusion doesn't support working with filtered pyarrow datasets even if other engines do: ```python from pathlib import Path import shutil import polars as pl from deltalake import...
## Which issue does this PR close? Closes https://github.com/apache/datafusion/issues/10251 ## Rationale for this change See https://github.com/apache/datafusion/issues/10251 -- keeps it clear what used to be in these positions ## What changes...
## Which issue does this PR close? Closes #10013. ## Rationale for this change In the following query syntax, `SELECT select_list FROM table_expression ORDER BY expressions`, the order-by expressions can...
### Is your feature request related to a problem or challenge? I want to create a udf that can select multiple functions at once, such as a `COLUMNS()` function. `select...