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 776a440 commit 0d56af4Copy full SHA for 0d56af4
sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala
@@ -289,9 +289,9 @@ class SQLQuerySuite extends QueryTest with BeforeAndAfterAll {
289
290
checkAnswer(
291
sql("""
292
- |with q1 as (select * from testData where key= '5'),
293
- |q2 as (select * from testData where key = '4')
294
- |select * from q1 union all select * from q2""".stripMargin),
+ |with q1 as (select * from testData where key= '5'),
+ |q2 as (select * from testData where key = '4')
+ |select * from q1 union all select * from q2""".stripMargin),
295
Row(5, "5") :: Row(4, "4") :: Nil)
296
297
}
0 commit comments