Skip to content

Commit bd2c444

Browse files
committed
Update HiveQuerySuite.scala
1 parent 1893956 commit bd2c444

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

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

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -421,16 +421,6 @@ class HiveQuerySuite extends HiveComparisonTest with BeforeAndAfter {
421421
createQueryTest("select null from table",
422422
"SELECT null FROM src LIMIT 1")
423423

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-
434424
test("implement identity function using case statement") {
435425
val actual = sql("SELECT (CASE key WHEN key THEN key END) FROM src")
436426
.map { case Row(i: Int) => i }

0 commit comments

Comments
 (0)