dask-sql icon indicating copy to clipboard operation
dask-sql copied to clipboard

Distributed SQL Engine in Python using Dask

Results 258 dask-sql issues
Sort by recently updated
recently updated
newest added

**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,...

enhancement
needs triage

**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**...

enhancement
needs triage

Followup things to look into post release: - [ ] Improve function signature handling in the planner - [ ] Identify why the codebase cannot find column name in backend...

enhancement
needs triage
datafusion

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...

enhancement
needs triage

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...

bug
documentation
python

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...

enhancement
needs triage

**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...

bug
blocked
datafusion

**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...

enhancement
needs triage

**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)...

bug
python
machine learning

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