We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07af901 commit ba6411aCopy full SHA for ba6411a
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala
@@ -264,7 +264,10 @@ class SQLQuerySuite extends QueryTest with SQLTestUtils with TestHiveSingleton {
264
Row(1) :: Row(2) :: Row(3) :: Nil)
265
266
checkAnswer(
267
- sql("SELECT `weird``tab`.`weird``col` FROM nestedArray LATERAL VIEW explode(a.b) `weird``tab` AS `weird``col`"),
+ sql(
268
+ """SELECT `weird``tab`.`weird``col`
269
+ |FROM nestedArray LATERAL VIEW explode(a.b) `weird``tab` AS `weird``col`
270
+ """.stripMargin),
271
272
}
273
0 commit comments