From bd2c44452bb9244365bea0726b71e632e84c35ef Mon Sep 17 00:00:00 2001 From: YanTangZhai Date: Mon, 22 Dec 2014 13:31:51 +0800 Subject: [PATCH] Update HiveQuerySuite.scala --- .../spark/sql/hive/execution/HiveQuerySuite.scala | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala index ab531be2155b1..9c34cb081679f 100644 --- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala +++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala @@ -421,16 +421,6 @@ class HiveQuerySuite extends HiveComparisonTest with BeforeAndAfter { createQueryTest("select null from table", "SELECT null FROM src LIMIT 1") - test("! boolean logic operator") { - sql( - """ - |SELECT a FROM ( - | SELECT 1 AS a FROM src LIMIT 1 UNION ALL - | SELECT 2 AS a FROM src LIMIT 1) table - |WHERE !(a>1) - """.stripMargin).collect() - } - test("implement identity function using case statement") { val actual = sql("SELECT (CASE key WHEN key THEN key END) FROM src") .map { case Row(i: Int) => i }