Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEAT] Add hashjoin, sort, and hashagg ops to new executor #2530

Merged
merged 2 commits into from
Jul 18, 2024

Conversation

colin-ho
Copy link
Contributor

TPCH 1-10 is good to go

@github-actions github-actions bot added the enhancement New feature or request label Jul 18, 2024
Copy link

codecov bot commented Jul 18, 2024

Codecov Report

Attention: Patch coverage is 0% with 190 lines in your changes missing coverage. Please review.

Please upload report for BASE (main@a226d00). Learn more about missing BASE report.

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main    #2530   +/-   ##
=======================================
  Coverage        ?   63.08%           
=======================================
  Files           ?      975           
  Lines           ?   108599           
  Branches        ?        0           
=======================================
  Hits            ?    68512           
  Misses          ?    40087           
  Partials        ?        0           
Files Coverage Δ
src/daft-plan/src/lib.rs 100.00% <ø> (ø)
src/daft-local-execution/src/sinks/sort.rs 0.00% <0.00%> (ø)
src/daft-physical-plan/src/translate.rs 0.00% <0.00%> (ø)
src/daft-physical-plan/src/local_plan.rs 0.00% <0.00%> (ø)
src/daft-local-execution/src/pipeline.rs 0.00% <0.00%> (ø)
src/daft-local-execution/src/sinks/hash_join.rs 0.00% <0.00%> (ø)

}

fn name(&self) -> &'static str {
"Concat"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

name should be HashJoin

}

fn in_order(&self) -> bool {
true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hash join shouldn't care about order?

}

fn in_order(&self) -> bool {
true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sort should also not care about order, since it makes it own

@colin-ho colin-ho merged commit 46d6717 into main Jul 18, 2024
44 checks passed
@colin-ho colin-ho deleted the colin/sort-join-agg branch July 18, 2024 20:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants