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

Move SMJ filtered Right outer join out of join_partial phase #310

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
efe5708
Convert `BuiltInWindowFunction::{Lead, Lag}` to a user defined window…
jcsherin Oct 18, 2024
24148bd
Add links to new_constraint_from_table_constraints doc (#12995)
findepi Oct 18, 2024
87e931c
Split output batches of joins that do not respect batch size (#12969)
alihan-synnada Oct 18, 2024
e9435a9
Fix:fix HashJoin projection swap (#12967)
my-vegetable-has-exploded Oct 18, 2024
97f7491
refactor(substrait): refactor ReadRel consumer (#12983)
tokoko Oct 18, 2024
42f9060
feat(substrait): add wildcard handling to producer (#12987)
tokoko Oct 18, 2024
3405234
Move SMJ join filtered part out of join_output stage. LeftOuter, Left…
comphead Oct 18, 2024
73ba4c4
feat: Add regexp_count function (#12970)
Omega359 Oct 18, 2024
8c9b915
Minor: Fixed regexpr_match docs (#13008)
jonathanc-n Oct 18, 2024
10af8a7
Improve performance for physical plan creation with many columns (#12…
askalt Oct 18, 2024
34bd823
Remove logical cross join in planning (#12985)
Dandandan Oct 18, 2024
12568bf
fix spelling (#13014)
jonathanc-n Oct 19, 2024
7a34147
replace take_array with arrow util (#13013)
akurmustafa Oct 19, 2024
c7e5d8d
Improve recursive `unnest` options API (#12836)
duongcongtoai Oct 20, 2024
373fe23
Update version to 42.1.0, add CHANGELOG (#12986) (#12989)
alamb Oct 20, 2024
8d4614d
Don't preserve functional dependency when generating UNION logical pl…
Sevenannn Oct 20, 2024
972e3ab
feat: Decorrelate more predicate subqueries (#12945)
eejbyfeldt Oct 20, 2024
e9584bc
Added expresion to "with_standard_argument" (#12926)
jonathanc-n Oct 20, 2024
b42d9b8
fix: Dialect requires derived table alias (#12994)
peasee Oct 21, 2024
69a4648
[Minor]: Add data based sort expression test (#12992)
akurmustafa Oct 21, 2024
edeca39
Removed last usages of scalar_inputs, scalar_input_types and inputs2 …
buraksenn Oct 21, 2024
2de6e29
Minor: Update release instructions (#13024)
alamb Oct 21, 2024
701cb00
fix: join swap for projected semi/anti joins (#13022)
korowa Oct 21, 2024
45a316c
Extract CSE logic to `datafusion_common` (#13002)
peter-toth Oct 21, 2024
2535d88
enhance unparsing plan with pushdown to avoid unnamed subquery (#13006)
goldmedal Oct 21, 2024
4fca0d5
fix: Verify supported type for Unary::Plus in sql planner (#13019)
eejbyfeldt Oct 21, 2024
34fbe8e
Fix count on all null `VALUES` clause (#13029)
findepi Oct 21, 2024
f50d363
Move filtered SMJ right join out of `join_partial` phase
comphead Oct 22, 2024
762b0c0
Move filtered SMJ right join out of `join_partial` phase
comphead Oct 22, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/apache/datafusion"
rust-version = "1.79"
version = "42.0.0"
version = "42.1.0"

[workspace.dependencies]
# We turn off default-features for some dependencies here so the workspaces which inherit them can
Expand Down Expand Up @@ -92,29 +92,29 @@ bytes = "1.4"
chrono = { version = "0.4.38", default-features = false }
ctor = "0.2.0"
dashmap = "6.0.1"
datafusion = { path = "datafusion/core", version = "42.0.0", default-features = false }
datafusion-catalog = { path = "datafusion/catalog", version = "42.0.0" }
datafusion-common = { path = "datafusion/common", version = "42.0.0", default-features = false }
datafusion-common-runtime = { path = "datafusion/common-runtime", version = "42.0.0" }
datafusion-execution = { path = "datafusion/execution", version = "42.0.0" }
datafusion-expr = { path = "datafusion/expr", version = "42.0.0" }
datafusion-expr-common = { path = "datafusion/expr-common", version = "42.0.0" }
datafusion-functions = { path = "datafusion/functions", version = "42.0.0" }
datafusion-functions-aggregate = { path = "datafusion/functions-aggregate", version = "42.0.0" }
datafusion-functions-aggregate-common = { path = "datafusion/functions-aggregate-common", version = "42.0.0" }
datafusion-functions-nested = { path = "datafusion/functions-nested", version = "42.0.0" }
datafusion-functions-window = { path = "datafusion/functions-window", version = "42.0.0" }
datafusion-functions-window-common = { path = "datafusion/functions-window-common", version = "42.0.0" }
datafusion-optimizer = { path = "datafusion/optimizer", version = "42.0.0", default-features = false }
datafusion-physical-expr = { path = "datafusion/physical-expr", version = "42.0.0", default-features = false }
datafusion-physical-expr-common = { path = "datafusion/physical-expr-common", version = "42.0.0", default-features = false }
datafusion-physical-optimizer = { path = "datafusion/physical-optimizer", version = "42.0.0" }
datafusion-physical-plan = { path = "datafusion/physical-plan", version = "42.0.0" }
datafusion-proto = { path = "datafusion/proto", version = "42.0.0" }
datafusion-proto-common = { path = "datafusion/proto-common", version = "42.0.0" }
datafusion-sql = { path = "datafusion/sql", version = "42.0.0" }
datafusion-sqllogictest = { path = "datafusion/sqllogictest", version = "42.0.0" }
datafusion-substrait = { path = "datafusion/substrait", version = "42.0.0" }
datafusion = { path = "datafusion/core", version = "42.1.0", default-features = false }
datafusion-catalog = { path = "datafusion/catalog", version = "42.1.0" }
datafusion-common = { path = "datafusion/common", version = "42.1.0", default-features = false }
datafusion-common-runtime = { path = "datafusion/common-runtime", version = "42.1.0" }
datafusion-execution = { path = "datafusion/execution", version = "42.1.0" }
datafusion-expr = { path = "datafusion/expr", version = "42.1.0" }
datafusion-expr-common = { path = "datafusion/expr-common", version = "42.1.0" }
datafusion-functions = { path = "datafusion/functions", version = "42.1.0" }
datafusion-functions-aggregate = { path = "datafusion/functions-aggregate", version = "42.1.0" }
datafusion-functions-aggregate-common = { path = "datafusion/functions-aggregate-common", version = "42.1.0" }
datafusion-functions-nested = { path = "datafusion/functions-nested", version = "42.1.0" }
datafusion-functions-window = { path = "datafusion/functions-window", version = "42.1.0" }
datafusion-functions-window-common = { path = "datafusion/functions-window-common", version = "42.1.0" }
datafusion-optimizer = { path = "datafusion/optimizer", version = "42.1.0", default-features = false }
datafusion-physical-expr = { path = "datafusion/physical-expr", version = "42.1.0", default-features = false }
datafusion-physical-expr-common = { path = "datafusion/physical-expr-common", version = "42.1.0", default-features = false }
datafusion-physical-optimizer = { path = "datafusion/physical-optimizer", version = "42.1.0" }
datafusion-physical-plan = { path = "datafusion/physical-plan", version = "42.1.0" }
datafusion-proto = { path = "datafusion/proto", version = "42.1.0" }
datafusion-proto-common = { path = "datafusion/proto-common", version = "42.1.0" }
datafusion-sql = { path = "datafusion/sql", version = "42.1.0" }
datafusion-sqllogictest = { path = "datafusion/sqllogictest", version = "42.1.0" }
datafusion-substrait = { path = "datafusion/substrait", version = "42.1.0" }
doc-comment = "0.3"
env_logger = "0.11"
futures = "0.3"
Expand Down
Loading
Loading