Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
76 changes: 38 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ codegen-units = 2
# We cannot publish to crates.io with any patches in the below section. Developers
# must remove any entries in this section before creating a release candidate.
[patch.crates-io]
datafusion = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
datafusion-substrait = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
datafusion-proto = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
datafusion-ffi = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
datafusion-catalog = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
datafusion-common = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
datafusion-functions-aggregate = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
datafusion-functions-window = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
datafusion-spark = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
datafusion-expr = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc2" }
datafusion = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
datafusion-substrait = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
datafusion-proto = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
datafusion-ffi = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
datafusion-catalog = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
datafusion-common = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
datafusion-functions-aggregate = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
datafusion-functions-window = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
datafusion-spark = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
datafusion-expr = { git = "https://github.com/apache/datafusion", rev = "55.0.0-rc3" }
4 changes: 0 additions & 4 deletions python/tests/test_spark_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,6 @@ def test_slice(df):
assert _val(df, spark.slice(col("a"), lit(2), lit(2))) == [2, 3]


@pytest.mark.xfail(
strict=True,
reason="Upstream array_slice does not preserve Spark array field names",
)
def test_slice_spark_array(df):
arr = spark.array(lit(1), lit(2), lit(3), lit(4))
assert _val(df, spark.slice(arr, lit(2), lit(2))) == [2, 3]
Expand Down
Loading