aboutsummaryrefslogtreecommitdiff
path: root/sql/hive/compatibility/src
diff options
context:
space:
mode:
Diffstat (limited to 'sql/hive/compatibility/src')
-rw-r--r--sql/hive/compatibility/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala29
1 files changed, 28 insertions, 1 deletions
diff --git a/sql/hive/compatibility/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala b/sql/hive/compatibility/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala
index 53d5b22b52..c46a4a4b0b 100644
--- a/sql/hive/compatibility/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala
+++ b/sql/hive/compatibility/src/test/scala/org/apache/spark/sql/hive/execution/HiveCompatibilitySuite.scala
@@ -267,7 +267,34 @@ class HiveCompatibilitySuite extends HiveQueryFileTest with BeforeAndAfter {
"date_udf",
// Unlike Hive, we do support log base in (0, 1.0], therefore disable this
- "udf7"
+ "udf7",
+
+ // Trivial changes to DDL output
+ "compute_stats_empty_table",
+ "compute_stats_long",
+ "create_view_translate",
+ "show_create_table_serde",
+ "show_tblproperties",
+
+ // Odd changes to output
+ "merge4",
+
+ // Thift is broken...
+ "inputddl8",
+
+ // Hive changed ordering of ddl:
+ "varchar_union1",
+
+ // Parser changes in Hive 1.2
+ "input25",
+ "input26",
+
+ // Uses invalid table name
+ "innerjoin",
+
+ // classpath problems
+ "compute_stats.*",
+ "udf_bitmap_.*"
)
/**