dask-sql
dask-sql copied to clipboard
Distributed SQL Engine in Python using Dask
**What happened**: "SELECT ((\) IS DISTINCT FROM ((CASE \ WHEN \ THEN \ END ))) FROM \" brings different results, when using CPU and GPU. **What you expected to happen**:...
**What happened**: "SELECT ((1) NOT BETWEEN (CASE ((\)) WHEN (1) THEN 0 END ) AND (\)) FROM \" brings different results, when using CPU and GPU. **What you expected to...
**What happened**: "SELECT (\)||(\) FROM \" brings different results, when using CPU and GPU. **What you expected to happen**: It is the same result, when using CPU and GPU. **Minimal...
This should make this environment consistent with that used in GPU CI as of https://github.com/rapidsai/dask-build-environment/pull/83
**What happened**: "SELECT ((\)!=(\)) FROM \" brings error, when using GPU. However it is able to output result, when using CPU. **What you expected to happen**: It will not bring...
While running some TPC-H queries using dask-sql + dask-cudf, I noticed some failures around predicate pushdown that seemed to be caused by us incorrectly pushing down blockwise comparisons between columns....
Riight now, many trivial SQL queries are failing due to Dask dataframe config defaults not being supported in Dask-SQL right now: ```python from dask_sql import Context from tests.integration.test_compatibility import make_rand_df...
Because we were forgetting to alias/unalias column names before/after the merge operation, tables sharing column names were not being handled properly