You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ke...@apache.org on 2012/06/12 04:29:03 UTC

svn commit: r1349096 - in /hive/trunk/ql/src/test: queries/clientpositive/ results/clientpositive/

Author: kevinwilfong
Date: Tue Jun 12 02:29:03 2012
New Revision: 1349096

URL: http://svn.apache.org/viewvc?rev=1349096&view=rev
Log:
HIVE-3112 clear hive.metastore.partition.inherit.table.properties till HIVE-3109 is fixed (njain via kevinwilfong)

Modified:
    hive/trunk/ql/src/test/queries/clientpositive/part_inherit_tbl_props.q
    hive/trunk/ql/src/test/queries/clientpositive/part_inherit_tbl_props_with_star.q
    hive/trunk/ql/src/test/results/clientpositive/part_inherit_tbl_props.q.out
    hive/trunk/ql/src/test/results/clientpositive/part_inherit_tbl_props_with_star.q.out

Modified: hive/trunk/ql/src/test/queries/clientpositive/part_inherit_tbl_props.q
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/queries/clientpositive/part_inherit_tbl_props.q?rev=1349096&r1=1349095&r2=1349096&view=diff
==============================================================================
--- hive/trunk/ql/src/test/queries/clientpositive/part_inherit_tbl_props.q (original)
+++ hive/trunk/ql/src/test/queries/clientpositive/part_inherit_tbl_props.q Tue Jun 12 02:29:03 2012
@@ -1,5 +1,8 @@
 set hive.metastore.partition.inherit.table.properties=a,b;
+-- The property needs to be unset at the end of the test till HIVE-3109/HIVE-3112 is fixed
 
 create table mytbl (c1 tinyint) partitioned by (c2 string) tblproperties ('a'='myval','b'='yourval','c'='noval');
 alter table mytbl add partition (c2 = 'v1');
 describe formatted mytbl partition (c2='v1');
+
+set hive.metastore.partition.inherit.table.properties=;

Modified: hive/trunk/ql/src/test/queries/clientpositive/part_inherit_tbl_props_with_star.q
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/queries/clientpositive/part_inherit_tbl_props_with_star.q?rev=1349096&r1=1349095&r2=1349096&view=diff
==============================================================================
--- hive/trunk/ql/src/test/queries/clientpositive/part_inherit_tbl_props_with_star.q (original)
+++ hive/trunk/ql/src/test/queries/clientpositive/part_inherit_tbl_props_with_star.q Tue Jun 12 02:29:03 2012
@@ -1,5 +1,8 @@
 set hive.metastore.partition.inherit.table.properties=key1,*;
+-- The property needs to be unset at the end of the test till HIVE-3109/HIVE-3112 is fixed
 
 create table mytbl (c1 tinyint) partitioned by (c2 string) tblproperties ('a'='myval','b'='yourval','c'='noval');
 alter table mytbl add partition (c2 = 'v1');
 describe formatted mytbl partition (c2='v1');
+
+set hive.metastore.partition.inherit.table.properties=;

Modified: hive/trunk/ql/src/test/results/clientpositive/part_inherit_tbl_props.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientpositive/part_inherit_tbl_props.q.out?rev=1349096&r1=1349095&r2=1349096&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientpositive/part_inherit_tbl_props.q.out (original)
+++ hive/trunk/ql/src/test/results/clientpositive/part_inherit_tbl_props.q.out Tue Jun 12 02:29:03 2012
@@ -1,6 +1,10 @@
-PREHOOK: query: create table mytbl (c1 tinyint) partitioned by (c2 string) tblproperties ('a'='myval','b'='yourval','c'='noval')
+PREHOOK: query: -- The property needs to be unset at the end of the test till HIVE-3109/HIVE-3112 is fixed
+
+create table mytbl (c1 tinyint) partitioned by (c2 string) tblproperties ('a'='myval','b'='yourval','c'='noval')
 PREHOOK: type: CREATETABLE
-POSTHOOK: query: create table mytbl (c1 tinyint) partitioned by (c2 string) tblproperties ('a'='myval','b'='yourval','c'='noval')
+POSTHOOK: query: -- The property needs to be unset at the end of the test till HIVE-3109/HIVE-3112 is fixed
+
+create table mytbl (c1 tinyint) partitioned by (c2 string) tblproperties ('a'='myval','b'='yourval','c'='noval')
 POSTHOOK: type: CREATETABLE
 POSTHOOK: Output: default@mytbl
 PREHOOK: query: alter table mytbl add partition (c2 = 'v1')

Modified: hive/trunk/ql/src/test/results/clientpositive/part_inherit_tbl_props_with_star.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientpositive/part_inherit_tbl_props_with_star.q.out?rev=1349096&r1=1349095&r2=1349096&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientpositive/part_inherit_tbl_props_with_star.q.out (original)
+++ hive/trunk/ql/src/test/results/clientpositive/part_inherit_tbl_props_with_star.q.out Tue Jun 12 02:29:03 2012
@@ -1,6 +1,10 @@
-PREHOOK: query: create table mytbl (c1 tinyint) partitioned by (c2 string) tblproperties ('a'='myval','b'='yourval','c'='noval')
+PREHOOK: query: -- The property needs to be unset at the end of the test till HIVE-3109/HIVE-3112 is fixed
+
+create table mytbl (c1 tinyint) partitioned by (c2 string) tblproperties ('a'='myval','b'='yourval','c'='noval')
 PREHOOK: type: CREATETABLE
-POSTHOOK: query: create table mytbl (c1 tinyint) partitioned by (c2 string) tblproperties ('a'='myval','b'='yourval','c'='noval')
+POSTHOOK: query: -- The property needs to be unset at the end of the test till HIVE-3109/HIVE-3112 is fixed
+
+create table mytbl (c1 tinyint) partitioned by (c2 string) tblproperties ('a'='myval','b'='yourval','c'='noval')
 POSTHOOK: type: CREATETABLE
 POSTHOOK: Output: default@mytbl
 PREHOOK: query: alter table mytbl add partition (c2 = 'v1')