forked from apache/datafusion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'apache/main' into alamb/sort-merge-acco…
…unting
- Loading branch information
Showing
574 changed files
with
61,640 additions
and
32,637 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,8 +21,8 @@ | |
# https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features | ||
|
||
notifications: | ||
commits: [email protected] | ||
issues: [email protected] | ||
commits: [email protected] | ||
issues: [email protected] | ||
pullrequests: [email protected] | ||
jira_options: link label worklog | ||
github: | ||
|
@@ -44,6 +44,8 @@ github: | |
rebase: false | ||
features: | ||
issues: true | ||
protected_branches: | ||
main: { } | ||
|
||
# publishes the content of the `asf-site` branch to | ||
# https://arrow.apache.org/datafusion/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,40 +17,28 @@ | |
|
||
[workspace] | ||
exclude = ["datafusion-cli"] | ||
members = [ | ||
"datafusion/common", | ||
"datafusion/core", | ||
"datafusion/expr", | ||
"datafusion/execution", | ||
"datafusion/optimizer", | ||
"datafusion/physical-expr", | ||
"datafusion/proto", | ||
"datafusion/proto/gen", | ||
"datafusion/row", | ||
"datafusion/sql", | ||
"datafusion/substrait", | ||
"datafusion-examples", | ||
"test-utils", | ||
"benchmarks", | ||
members = ["datafusion/common", "datafusion/core", "datafusion/expr", "datafusion/execution", "datafusion/optimizer", "datafusion/physical-expr", "datafusion/proto", "datafusion/proto/gen", "datafusion/sql", "datafusion/substrait", "datafusion-examples", "test-utils", "benchmarks", | ||
] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "24.0.0" | ||
edition = "2021" | ||
readme = "README.md" | ||
authors = ["Apache Arrow <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
homepage = "https://github.com/apache/arrow-datafusion" | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/apache/arrow-datafusion" | ||
rust-version = "1.64" | ||
rust-version = "1.70" | ||
version = "28.0.0" | ||
|
||
[workspace.dependencies] | ||
arrow = { version = "39.0.0", features = ["prettyprint"] } | ||
arrow-flight = { version = "39.0.0", features = ["flight-sql-experimental"] } | ||
arrow-buffer = { version = "39.0.0", default-features = false } | ||
arrow-schema = { version = "39.0.0", default-features = false } | ||
arrow-array = { version = "39.0.0", default-features = false, features = ["chrono-tz"] } | ||
parquet = { version = "39.0.0", features = ["arrow", "async", "object_store"] } | ||
arrow = { version = "43.0.0", features = ["prettyprint", "dyn_cmp_dict"] } | ||
arrow-array = { version = "43.0.0", default-features = false, features = ["chrono-tz"] } | ||
arrow-buffer = { version = "43.0.0", default-features = false } | ||
arrow-flight = { version = "43.0.0", features = ["flight-sql-experimental"] } | ||
arrow-schema = { version = "43.0.0", default-features = false } | ||
parquet = { version = "43.0.0", features = ["arrow", "async", "object_store"] } | ||
sqlparser = { version = "0.36.1", features = ["visitor"] } | ||
|
||
[profile.release] | ||
codegen-units = 1 | ||
|
@@ -68,4 +56,4 @@ lto = false | |
opt-level = 3 | ||
overflow-checks = false | ||
panic = 'unwind' | ||
rpath = false | ||
rpath = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,13 +18,13 @@ | |
[package] | ||
name = "datafusion-benchmarks" | ||
description = "DataFusion Benchmarks" | ||
version = "24.0.0" | ||
version = "28.0.0" | ||
edition = "2021" | ||
authors = ["Apache Arrow <[email protected]>"] | ||
homepage = "https://github.com/apache/arrow-datafusion" | ||
repository = "https://github.com/apache/arrow-datafusion" | ||
license = "Apache-2.0" | ||
rust-version = "1.62" | ||
rust-version = "1.70" | ||
|
||
[features] | ||
ci = [] | ||
|
@@ -34,9 +34,10 @@ snmalloc = ["snmalloc-rs"] | |
|
||
[dependencies] | ||
arrow = { workspace = true } | ||
datafusion = { path = "../datafusion/core", version = "24.0.0" } | ||
datafusion = { path = "../datafusion/core", version = "28.0.0" } | ||
env_logger = "0.10" | ||
futures = "0.3" | ||
log = "^0.4" | ||
mimalloc = { version = "0.1", optional = true, default-features = false } | ||
num_cpus = "1.13.0" | ||
parquet = { workspace = true } | ||
|
@@ -48,4 +49,4 @@ test-utils = { path = "../test-utils/", version = "0.1.0" } | |
tokio = { version = "^1.0", features = ["macros", "rt", "rt-multi-thread", "parking_lot"] } | ||
|
||
[dev-dependencies] | ||
datafusion-proto = { path = "../datafusion/proto", version = "24.0.0" } | ||
datafusion-proto = { path = "../datafusion/proto", version = "28.0.0" } |
Oops, something went wrong.