Skip to content

Commit ba6411a

Browse files
committed
style
1 parent 07af901 commit ba6411a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,10 @@ class SQLQuerySuite extends QueryTest with SQLTestUtils with TestHiveSingleton {
264264
Row(1) :: Row(2) :: Row(3) :: Nil)
265265

266266
checkAnswer(
267-
sql("SELECT `weird``tab`.`weird``col` FROM nestedArray LATERAL VIEW explode(a.b) `weird``tab` AS `weird``col`"),
267+
sql(
268+
"""SELECT `weird``tab`.`weird``col`
269+
|FROM nestedArray LATERAL VIEW explode(a.b) `weird``tab` AS `weird``col`
270+
""".stripMargin),
268271
Row(1) :: Row(2) :: Row(3) :: Nil)
269272
}
270273

0 commit comments

Comments
 (0)