File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
spark/src/test/scala/org/apache/spark/sql/delta Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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(
You can’t perform that action at this time.
0 commit comments