Skip to content

Commit

Permalink
code indention
Browse files Browse the repository at this point in the history
  • Loading branch information
haiyang committed Mar 9, 2015
1 parent 776a440 commit 0d56af4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,9 @@ class SQLQuerySuite extends QueryTest with BeforeAndAfterAll {

checkAnswer(
sql("""
|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),
|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),
Row(5, "5") :: Row(4, "4") :: Nil)

}
Expand Down

0 comments on commit 0d56af4

Please sign in to comment.