Skip to content

Commit f519d92

Browse files
committed
Merge branch 'branch-45' of github.com:lakehq/datafusion into sail-df-43-regression-utf8
2 parents 09ef47c + 26058ac commit f519d92

File tree

29 files changed

+1200
-904
lines changed

29 files changed

+1200
-904
lines changed

Cargo.toml

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ license = "Apache-2.0"
6666
readme = "README.md"
6767
repository = "https://github.com/apache/datafusion"
6868
rust-version = "1.81.0"
69-
version = "44.0.0"
69+
version = "45.0.0"
7070

7171
[workspace.dependencies]
7272
# We turn off default-features for some dependencies here so the workspaces which inherit them can
@@ -77,52 +77,52 @@ version = "44.0.0"
7777
ahash = { version = "0.8", default-features = false, features = [
7878
"runtime-rng",
7979
] }
80-
arrow = { version = "54.0.0", features = [
80+
arrow = { version = "54.1.0", features = [
8181
"prettyprint",
8282
] }
83-
arrow-array = { version = "54.0.0", default-features = false, features = [
83+
arrow-array = { version = "54.1.0", default-features = false, features = [
8484
"chrono-tz",
8585
] }
86-
arrow-buffer = { version = "54.0.0", default-features = false }
87-
arrow-flight = { version = "54.0.0", features = [
86+
arrow-buffer = { version = "54.1.0", default-features = false }
87+
arrow-flight = { version = "54.1.0", features = [
8888
"flight-sql-experimental",
8989
] }
90-
arrow-ipc = { version = "54.0.0", default-features = false, features = [
90+
arrow-ipc = { version = "54.1.0", default-features = false, features = [
9191
"lz4",
9292
] }
93-
arrow-ord = { version = "54.0.0", default-features = false }
94-
arrow-schema = { version = "54.0.0", default-features = false }
93+
arrow-ord = { version = "54.1.0", default-features = false }
94+
arrow-schema = { version = "54.1.0", default-features = false }
9595
async-trait = "0.1.73"
9696
bigdecimal = "0.4.7"
9797
bytes = "1.4"
9898
chrono = { version = "0.4.38", default-features = false }
9999
ctor = "0.2.9"
100100
dashmap = "6.0.1"
101-
datafusion = { path = "datafusion/core", version = "44.0.0", default-features = false }
102-
datafusion-catalog = { path = "datafusion/catalog", version = "44.0.0" }
103-
datafusion-common = { path = "datafusion/common", version = "44.0.0", default-features = false }
104-
datafusion-common-runtime = { path = "datafusion/common-runtime", version = "44.0.0" }
105-
datafusion-doc = { path = "datafusion/doc", version = "44.0.0" }
106-
datafusion-execution = { path = "datafusion/execution", version = "44.0.0" }
107-
datafusion-expr = { path = "datafusion/expr", version = "44.0.0" }
108-
datafusion-expr-common = { path = "datafusion/expr-common", version = "44.0.0" }
109-
datafusion-ffi = { path = "datafusion/ffi", version = "44.0.0" }
110-
datafusion-functions = { path = "datafusion/functions", version = "44.0.0" }
111-
datafusion-functions-aggregate = { path = "datafusion/functions-aggregate", version = "44.0.0" }
112-
datafusion-functions-aggregate-common = { path = "datafusion/functions-aggregate-common", version = "44.0.0" }
113-
datafusion-functions-nested = { path = "datafusion/functions-nested", version = "44.0.0" }
114-
datafusion-functions-table = { path = "datafusion/functions-table", version = "44.0.0" }
115-
datafusion-functions-window = { path = "datafusion/functions-window", version = "44.0.0" }
116-
datafusion-functions-window-common = { path = "datafusion/functions-window-common", version = "44.0.0" }
117-
datafusion-macros = { path = "datafusion/macros", version = "44.0.0" }
118-
datafusion-optimizer = { path = "datafusion/optimizer", version = "44.0.0", default-features = false }
119-
datafusion-physical-expr = { path = "datafusion/physical-expr", version = "44.0.0", default-features = false }
120-
datafusion-physical-expr-common = { path = "datafusion/physical-expr-common", version = "44.0.0", default-features = false }
121-
datafusion-physical-optimizer = { path = "datafusion/physical-optimizer", version = "44.0.0" }
122-
datafusion-physical-plan = { path = "datafusion/physical-plan", version = "44.0.0" }
123-
datafusion-proto = { path = "datafusion/proto", version = "44.0.0" }
124-
datafusion-proto-common = { path = "datafusion/proto-common", version = "44.0.0" }
125-
datafusion-sql = { path = "datafusion/sql", version = "44.0.0" }
101+
datafusion = { path = "datafusion/core", version = "45.0.0", default-features = false }
102+
datafusion-catalog = { path = "datafusion/catalog", version = "45.0.0" }
103+
datafusion-common = { path = "datafusion/common", version = "45.0.0", default-features = false }
104+
datafusion-common-runtime = { path = "datafusion/common-runtime", version = "45.0.0" }
105+
datafusion-doc = { path = "datafusion/doc", version = "45.0.0" }
106+
datafusion-execution = { path = "datafusion/execution", version = "45.0.0" }
107+
datafusion-expr = { path = "datafusion/expr", version = "45.0.0" }
108+
datafusion-expr-common = { path = "datafusion/expr-common", version = "45.0.0" }
109+
datafusion-ffi = { path = "datafusion/ffi", version = "45.0.0" }
110+
datafusion-functions = { path = "datafusion/functions", version = "45.0.0" }
111+
datafusion-functions-aggregate = { path = "datafusion/functions-aggregate", version = "45.0.0" }
112+
datafusion-functions-aggregate-common = { path = "datafusion/functions-aggregate-common", version = "45.0.0" }
113+
datafusion-functions-nested = { path = "datafusion/functions-nested", version = "45.0.0" }
114+
datafusion-functions-table = { path = "datafusion/functions-table", version = "45.0.0" }
115+
datafusion-functions-window = { path = "datafusion/functions-window", version = "45.0.0" }
116+
datafusion-functions-window-common = { path = "datafusion/functions-window-common", version = "45.0.0" }
117+
datafusion-macros = { path = "datafusion/macros", version = "45.0.0" }
118+
datafusion-optimizer = { path = "datafusion/optimizer", version = "45.0.0", default-features = false }
119+
datafusion-physical-expr = { path = "datafusion/physical-expr", version = "45.0.0", default-features = false }
120+
datafusion-physical-expr-common = { path = "datafusion/physical-expr-common", version = "45.0.0", default-features = false }
121+
datafusion-physical-optimizer = { path = "datafusion/physical-optimizer", version = "45.0.0" }
122+
datafusion-physical-plan = { path = "datafusion/physical-plan", version = "45.0.0" }
123+
datafusion-proto = { path = "datafusion/proto", version = "45.0.0" }
124+
datafusion-proto-common = { path = "datafusion/proto-common", version = "45.0.0" }
125+
datafusion-sql = { path = "datafusion/sql", version = "45.0.0" }
126126
doc-comment = "0.3"
127127
env_logger = "0.11"
128128
futures = "0.3"
@@ -133,7 +133,7 @@ itertools = "0.14"
133133
log = "^0.4"
134134
object_store = { version = "0.11.0", default-features = false }
135135
parking_lot = "0.12"
136-
parquet = { version = "54.0.0", default-features = false, features = [
136+
parquet = { version = "54.1.0", default-features = false, features = [
137137
"arrow",
138138
"async",
139139
"object_store",

0 commit comments

Comments
 (0)