We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bf740f commit 58ea8aaCopy full SHA for 58ea8aa
sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala
@@ -123,7 +123,7 @@ class SQLQuerySuite extends QueryTest with BeforeAndAfterAll with SQLTestUtils {
123
124
val df = Seq(Tuple1(1), Tuple1(2), Tuple1(3)).toDF("index")
125
// we except the id is materialized once
126
- def id:() => String = () => { UUID.randomUUID().toString() }
+ def id: () => String = () => { UUID.randomUUID().toString() }
127
128
val dfWithId = df.withColumn("id", callUDF(id, StringType))
129
// Make a new DataFrame (actually the same reference to the old one)
0 commit comments