Skip to content

Commit 2bd80ec

Browse files
authored
chore: Bump release candidate version to 55.0.0rc3 (#1686)
* Bump release candidate version * spark slice function now respects inner field name
1 parent 38422e4 commit 2bd80ec

3 files changed

Lines changed: 48 additions & 52 deletions

File tree

Cargo.lock

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ codegen-units = 2
7272
# We cannot publish to crates.io with any patches in the below section. Developers
7373
# must remove any entries in this section before creating a release candidate.
7474
[patch.crates-io]
75-
datafusion = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
76-
datafusion-substrait = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
77-
datafusion-proto = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
78-
datafusion-ffi = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
79-
datafusion-catalog = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
80-
datafusion-common = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
81-
datafusion-functions-aggregate = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
82-
datafusion-functions-window = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
83-
datafusion-spark = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
84-
datafusion-expr = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
75+
datafusion = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
76+
datafusion-substrait = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
77+
datafusion-proto = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
78+
datafusion-ffi = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
79+
datafusion-catalog = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
80+
datafusion-common = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
81+
datafusion-functions-aggregate = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
82+
datafusion-functions-window = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
83+
datafusion-spark = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
84+
datafusion-expr = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }

python/tests/test_spark_functions.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,6 @@ def test_slice(df):
175175
assert _val(df, spark.slice(col("a"), lit(2), lit(2))) == [2, 3]
176176

177177

178-
@pytest.mark.xfail(
179-
strict=True,
180-
reason="Upstream array_slice does not preserve Spark array field names",
181-
)
182178
def test_slice_spark_array(df):
183179
arr = spark.array(lit(1), lit(2), lit(3), lit(4))
184180
assert _val(df, spark.slice(arr, lit(2), lit(2))) == [2, 3]

0 commit comments

Comments
 (0)