Skip to content

Commit

Permalink
FIX/#199
Browse files Browse the repository at this point in the history
  • Loading branch information
joocer committed Jun 18, 2022
1 parent ca8d138 commit 0f5e7f5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion opteryx/engine/planner/operations/show_columns.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def _extended_collector(pages):
"""
Collect summary statistics about each column
"""
from opteryx.sketches.counting_tree import CountingTree
from opteryx.sketches import CountingTree
from opteryx.third_party import distogram
from opteryx.third_party import hyperloglog

Expand Down
2 changes: 2 additions & 0 deletions opteryx/sketches/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import pyximport

pyximport.install()

from .counting_tree import CountingTree
2 changes: 1 addition & 1 deletion opteryx/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
2) we can import it in setup.py for the same reason
"""

__version__ = "0.0.3-beta.9"
__version__ = "0.0.3-beta.10"
2 changes: 1 addition & 1 deletion tests/sketches/test_counting_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

sys.path.insert(1, os.path.join(sys.path[0], "../.."))

from opteryx.sketches.counting_tree import CountingTree
from opteryx.sketches import CountingTree


def test_counter():
Expand Down

0 comments on commit 0f5e7f5

Please sign in to comment.