Skip to content

Commit 0d56af4

Browse files
author
haiyang
committed
code indention
1 parent 776a440 commit 0d56af4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,9 +289,9 @@ class SQLQuerySuite extends QueryTest with BeforeAndAfterAll {
289289

290290
checkAnswer(
291291
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),
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),
295295
Row(5, "5") :: Row(4, "4") :: Nil)
296296

297297
}

0 commit comments

Comments
 (0)