Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
dilipbiswal committed Mar 8, 2016
1 parent 07af901 commit ba6411a
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,10 @@ class SQLQuerySuite extends QueryTest with SQLTestUtils with TestHiveSingleton {
Row(1) :: Row(2) :: Row(3) :: Nil)

checkAnswer(
sql("SELECT `weird``tab`.`weird``col` FROM nestedArray LATERAL VIEW explode(a.b) `weird``tab` AS `weird``col`"),
sql(
"""SELECT `weird``tab`.`weird``col`
|FROM nestedArray LATERAL VIEW explode(a.b) `weird``tab` AS `weird``col`
""".stripMargin),
Row(1) :: Row(2) :: Row(3) :: Nil)
}

Expand Down

0 comments on commit ba6411a

Please sign in to comment.