Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chirag-s-db committed Nov 12, 2024
1 parent 82da180 commit 0ed4e7b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,9 @@ trait PartitionLikeDataSkippingSuiteBase
test("partition-like data skipping expression references non-skipping eligible columns") {
val tbl = "tbl"
withClusteredTable(
table = tbl,
schema = "a BIGINT, b ARRAY<BIGINT>, c STRUCT<d ARRAY<BIGINT>, e BIGINT>",
clusterBy = "a") {
table = tbl,
schema = "a BIGINT, b ARRAY<BIGINT>, c STRUCT<d ARRAY<BIGINT>, e BIGINT>",
clusterBy = "a") {
spark.range(10)
.withColumnRenamed("id", "a")
.withColumn("b", array(col("a"), lit(0L)))
Expand Down

0 comments on commit 0ed4e7b

Please sign in to comment.