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 d186035 commit 2357d90Copy full SHA for 2357d90
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala
@@ -731,7 +731,7 @@ class SQLQuerySuite extends QueryTest with SQLTestUtils with TestHiveSingleton {
731
data.toDF("key", "value").registerTempTable("test")
732
checkAnswer(
733
sql("""FROM
734
- |(FROM test SELECT TRANSFORM(key, value) USING 'cat' AS (thing1 int, thing2 string)) t
+ |(FROM test SELECT TRANSFORM(key, value) USING 'cat' AS (`thing1` int, thing2 string)) t
735
|SELECT thing1 + 1
736
""".stripMargin), (2 to 6).map(i => Row(i)))
737
}
0 commit comments