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 1893956 commit bd2c444Copy full SHA for bd2c444
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala
@@ -421,16 +421,6 @@ class HiveQuerySuite extends HiveComparisonTest with BeforeAndAfter {
421
createQueryTest("select null from table",
422
"SELECT null FROM src LIMIT 1")
423
424
- test("! boolean logic operator") {
425
- sql(
426
- """
427
- |SELECT a FROM (
428
- | SELECT 1 AS a FROM src LIMIT 1 UNION ALL
429
- | SELECT 2 AS a FROM src LIMIT 1) table
430
- |WHERE !(a>1)
431
- """.stripMargin).collect()
432
- }
433
-
434
test("implement identity function using case statement") {
435
val actual = sql("SELECT (CASE key WHEN key THEN key END) FROM src")
436
.map { case Row(i: Int) => i }
0 commit comments