Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style
  • Loading branch information
dilipbiswal committed Mar 8, 2016
commit ba6411afdc8c59dd0fe049b62df55eb137a2dedc
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