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
36
36
withTable(" tbl" ) {
37
37
sql(" CREATE TABLE tbl(s STRING, v VARIANT) USING DELTA" )
38
38
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.
40
40
// assert(spark.table("tbl").selectExpr("v::int").head == Row(99))
41
41
assert(
42
42
getProtocolForTable(" tbl" ) ==
@@ -97,7 +97,7 @@ class DeltaVariantSuite
97
97
)
98
98
99
99
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.
101
101
// assert(spark.table("tbl").selectExpr("v::int").head == Row(99))
102
102
103
103
assert(
You can’t perform that action at this time.
0 commit comments