Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
goodwanghan authored Jun 13, 2024
1 parent 1100a26 commit a32be31
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release Notes

## 0.9.1

- [543](https://github.com/fugue-project/fugue/issues/543) Support type hinting with standard collections
- [544](https://github.com/fugue-project/fugue/issues/544) Fix Spark connect import issue on worker side

## 0.9.0

- [482](https://github.com/fugue-project/fugue/issues/482) Move Fugue SQL dependencies into extra `[sql]` and functions to become soft dependencies
Expand Down
1 change: 1 addition & 0 deletions tests/fugue_dask/test_execution_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def test__join_outer_pandas_incompatible(self):
# TODO: dask-sql 2024.5.0 has a bug, can't pass the HAVING tests
def test_select(self):
try:
import qpd
import dask_sql
except ImportError:
return
Expand Down
3 changes: 3 additions & 0 deletions tests/fugue_ibis/test_execution_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ def test_properties(self):
assert not self.engine.map_engine.is_distributed
assert not self.engine.sql_engine.is_distributed

assert self.engine.sql_engine.get_temp_table_name(
) != self.engine.sql_engine.get_temp_table_name()

def test_select(self):
# it can't work properly with DuckDB (hugeint is not recognized)
pass
Expand Down

0 comments on commit a32be31

Please sign in to comment.