dask-sql
dask-sql copied to clipboard
Distributed SQL Engine in Python using Dask
**Is your feature request related to a problem? Please describe.** The `eliminate_agg_filter` rule fails with a duplicate field error when running `test_agg_count`. This is the query: ```sql SELECT a, b,...
**Is your feature request related to a problem? Please describe.** See the following tests: - `test_multi_agg_count_no_group_by_dupe_distinct` - `test_agg_count` **Describe the solution you'd like** Enable these tests **Describe alternatives you've considered**...
Followup things to look into post release: - [ ] Improve function signature handling in the planner - [ ] Identify why the codebase cannot find column name in backend...
cuDF's 22.10 branch recently merged support for string UDFs- ``` >>> import cudf >>> df = cudf.DataFrame({'str_col': ['a', 'bcd', 'efg']}) >>> >>> def f(row): ... st = row['str_col'] ... return...
With a clean conda environment: ``` conda create --name test python=3.8 conda activate test conda install -c conda-forge dask-sql jupyterlab ``` From a clean notebook: ``` from dask_sql import Context...
Hi, I'd like to be able to parse a statement like CREATE TABLE films2 AS TABLE films as from the second Postgres example found at [this source](https://www.postgresql.org/docs/current/sql-createtableas.html). I currently get...
**What happened**: When running `test_rex.py::test_like` one specific case fails with parsing errors due to escaping on non standard char `'Ä'`. **What you expected to happen**: The operation succeeds. **Minimal Complete...
**Is your feature request related to a problem? Please describe.** In #746 I am resolving the `test_stats_aggregation` integration test for our DataFusion SQL planner branch. However, I'm having trouble with...
**What happened**: When attempting to make a prediction on the resulting table of a `LIMIT` / `OFFSET`, I get a failure during computation: ```python-traceback ValueError Traceback (most recent call last)...
Based on the https://github.com/nils-braun/dask-sql/issues/179 this PR adds string escaping to non-integer partition values. Partitions like: ``` forecasted_business_day=2021-05-27 ``` will now be wrapped like ``` forecasted_business_day="2021-05-27" ``` when executing the SQL