Skip to content

Commit

Permalink
0.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziheng Wang committed May 9, 2023
1 parent 9e162f4 commit 30043fe
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ var/
*.egg-info/
.installed.cfg
*.egg
*.o

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
2 changes: 1 addition & 1 deletion pyquokka/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

from .df import QuokkaContext

__version__ = '0.2.8'
__version__ = '0.2.9'
10 changes: 5 additions & 5 deletions pyquokka/df.py
Original file line number Diff line number Diff line change
Expand Up @@ -768,11 +768,11 @@ def optimize(self, node_id):
self.__push_ann__()
self.__push_filter__(node_id)
self.__early_projection__(node_id)
# self.__fold_map__(node_id)
# if self.sql_config["optimize_joins"]:
# self.__merge_joins__(node_id)
# self.__propagate_cardinality__(node_id)
# self.__determine_stages__(node_id)
self.__fold_map__(node_id)
if self.sql_config["optimize_joins"]:
self.__merge_joins__(node_id)
self.__propagate_cardinality__(node_id)
self.__determine_stages__(node_id)

assert len(self.execution_nodes[node_id].parents) == 1
parent_idx = list(self.execution_nodes[node_id].parents)[0]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = '0.2.8'
VERSION = '0.2.9'
DESCRIPTION = 'Quokka'
LONG_DESCRIPTION = """
Dope way to do cloud analytics\n
Expand Down

0 comments on commit 30043fe

Please sign in to comment.