Skip to content

Commit 7a30942

Browse files
committed
test
1 parent c34f00d commit 7a30942

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spark/src/test/scala/org/apache/spark/sql/delta/DeltaVariantSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class DeltaVariantSuite
3636
withTable("tbl") {
3737
sql("CREATE TABLE tbl(s STRING, v VARIANT) USING DELTA")
3838
sql("INSERT INTO tbl (SELECT 'foo', parse_json(cast(id + 99 as string)) FROM range(1))")
39-
// TODO(r.chen): Enable once `parse_json` is properly implemented in OSS Spark.
39+
// TODO(r.chen): Enable once variant casting is properly implemented in OSS Spark.
4040
// assert(spark.table("tbl").selectExpr("v::int").head == Row(99))
4141
assert(
4242
getProtocolForTable("tbl") ==
@@ -97,7 +97,7 @@ class DeltaVariantSuite
9797
)
9898

9999
sql("INSERT INTO tbl (SELECT 'foo', parse_json(cast(id + 99 as string)) FROM range(1))")
100-
// TODO(r.chen): Enable once `parse_json` is properly implemented in OSS Spark.
100+
// TODO(r.chen): Enable once variant casting is properly implemented in OSS Spark.
101101
// assert(spark.table("tbl").selectExpr("v::int").head == Row(99))
102102

103103
assert(

0 commit comments

Comments
 (0)