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 7c03c68 commit 1a9f605Copy full SHA for 1a9f605
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala
@@ -62,6 +62,14 @@ class HiveQuerySuite extends HiveComparisonTest with BeforeAndAfter {
62
sql("SHOW TABLES")
63
}
64
65
+
66
+ createQueryTest("! operator",
67
+ """
68
+ |SELECT a FROM (
69
+ | SELECT 1 AS a FROM src LIMIT 1 UNION ALL
70
+ | SELECT 2 AS a FROM src LIMIT 1) table
71
+ |WHERE !(a>1)
72
+ """.stripMargin)
73
74
createQueryTest("constant object inspector for generic udf",
75
"""SELECT named_struct(
0 commit comments