You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by gu...@apache.org on 2013/08/26 23:42:21 UTC

svn commit: r1517707 [13/17] - in /hive/branches/tez: ./ beeline/src/java/org/apache/hive/beeline/ bin/ bin/ext/ common/src/java/org/apache/hadoop/hive/common/ common/src/java/org/apache/hadoop/hive/conf/ conf/ contrib/src/java/org/apache/hadoop/hive/c...

Modified: hive/branches/tez/ql/src/test/results/clientpositive/ba_table_udfs.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/ba_table_udfs.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/ba_table_udfs.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/ba_table_udfs.q.out Mon Aug 26 21:42:12 2013
@@ -3,16 +3,19 @@ PREHOOK: type: SWITCHDATABASE
 POSTHOOK: query: USE default
 POSTHOOK: type: SWITCHDATABASE
 PREHOOK: query: CREATE TABLE dest1(bytes1 BINARY,
-                   bytes2 BINARY)
+                   bytes2 BINARY,
+                   string STRING)
 PREHOOK: type: CREATETABLE
 POSTHOOK: query: CREATE TABLE dest1(bytes1 BINARY,
-                   bytes2 BINARY)
+                   bytes2 BINARY,
+                   string STRING)
 POSTHOOK: type: CREATETABLE
 POSTHOOK: Output: default@dest1
 PREHOOK: query: FROM src INSERT OVERWRITE TABLE dest1
 SELECT
   CAST(key AS BINARY),
-  CAST(value AS BINARY)
+  CAST(value AS BINARY),
+  value
 ORDER BY value
 LIMIT 100
 PREHOOK: type: QUERY
@@ -21,7 +24,8 @@ PREHOOK: Output: default@dest1
 POSTHOOK: query: FROM src INSERT OVERWRITE TABLE dest1
 SELECT
   CAST(key AS BINARY),
-  CAST(value AS BINARY)
+  CAST(value AS BINARY),
+  value
 ORDER BY value
 LIMIT 100
 POSTHOOK: type: QUERY
@@ -29,13 +33,14 @@ POSTHOOK: Input: default@src
 POSTHOOK: Output: default@dest1
 POSTHOOK: Lineage: dest1.bytes1 EXPRESSION [(src)src.FieldSchema(name:key, type:string, comment:default), ]
 POSTHOOK: Lineage: dest1.bytes2 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ]
+POSTHOOK: Lineage: dest1.string SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ]
 PREHOOK: query: --Add in a null row for good measure
-INSERT INTO TABLE dest1 SELECT NULL, NULL FROM dest1 LIMIT 1
+INSERT INTO TABLE dest1 SELECT NULL, NULL, NULL FROM dest1 LIMIT 1
 PREHOOK: type: QUERY
 PREHOOK: Input: default@dest1
 PREHOOK: Output: default@dest1
 POSTHOOK: query: --Add in a null row for good measure
-INSERT INTO TABLE dest1 SELECT NULL, NULL FROM dest1 LIMIT 1
+INSERT INTO TABLE dest1 SELECT NULL, NULL, NULL FROM dest1 LIMIT 1
 POSTHOOK: type: QUERY
 POSTHOOK: Input: default@dest1
 POSTHOOK: Output: default@dest1
@@ -43,16 +48,25 @@ POSTHOOK: Lineage: dest1.bytes1 EXPRESSI
 POSTHOOK: Lineage: dest1.bytes1 EXPRESSION []
 POSTHOOK: Lineage: dest1.bytes2 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ]
 POSTHOOK: Lineage: dest1.bytes2 EXPRESSION []
+POSTHOOK: Lineage: dest1.string SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ]
+POSTHOOK: Lineage: dest1.string SIMPLE []
 PREHOOK: query: -- this query tests all the udfs provided to work with binary types
 
 SELECT
   bytes1,
   bytes2,
+  string,
   LENGTH(bytes1),
   CONCAT(bytes1, bytes2),
   SUBSTR(bytes2, 1, 4),
   SUBSTR(bytes2, 3),
-  SUBSTR(bytes2, -4, 3)
+  SUBSTR(bytes2, -4, 3),
+  HEX(bytes1),
+  UNHEX(HEX(bytes1)),
+  BASE64(bytes1),
+  UNBASE64(BASE64(bytes1)),
+  HEX(ENCODE(string, 'US-ASCII')),
+  DECODE(ENCODE(string, 'US-ASCII'), 'US-ASCII')
 FROM dest1
 ORDER BY bytes2
 PREHOOK: type: QUERY
@@ -63,11 +77,18 @@ POSTHOOK: query: -- this query tests all
 SELECT
   bytes1,
   bytes2,
+  string,
   LENGTH(bytes1),
   CONCAT(bytes1, bytes2),
   SUBSTR(bytes2, 1, 4),
   SUBSTR(bytes2, 3),
-  SUBSTR(bytes2, -4, 3)
+  SUBSTR(bytes2, -4, 3),
+  HEX(bytes1),
+  UNHEX(HEX(bytes1)),
+  BASE64(bytes1),
+  UNBASE64(BASE64(bytes1)),
+  HEX(ENCODE(string, 'US-ASCII')),
+  DECODE(ENCODE(string, 'US-ASCII'), 'US-ASCII')
 FROM dest1
 ORDER BY bytes2
 POSTHOOK: type: QUERY
@@ -77,104 +98,106 @@ POSTHOOK: Lineage: dest1.bytes1 EXPRESSI
 POSTHOOK: Lineage: dest1.bytes1 EXPRESSION []
 POSTHOOK: Lineage: dest1.bytes2 EXPRESSION [(src)src.FieldSchema(name:value, type:string, comment:default), ]
 POSTHOOK: Lineage: dest1.bytes2 EXPRESSION []
-NULL	NULL	NULL	NULL	NULL	NULL	NULL
-0	val_0	1	0val_0	val_	l_0	al_
-0	val_0	1	0val_0	val_	l_0	al_
-0	val_0	1	0val_0	val_	l_0	al_
-10	val_10	2	10val_10	val_	l_10	l_1
-100	val_100	3	100val_100	val_	l_100	_10
-100	val_100	3	100val_100	val_	l_100	_10
-103	val_103	3	103val_103	val_	l_103	_10
-103	val_103	3	103val_103	val_	l_103	_10
-104	val_104	3	104val_104	val_	l_104	_10
-104	val_104	3	104val_104	val_	l_104	_10
-105	val_105	3	105val_105	val_	l_105	_10
-11	val_11	2	11val_11	val_	l_11	l_1
-111	val_111	3	111val_111	val_	l_111	_11
-113	val_113	3	113val_113	val_	l_113	_11
-113	val_113	3	113val_113	val_	l_113	_11
-114	val_114	3	114val_114	val_	l_114	_11
-116	val_116	3	116val_116	val_	l_116	_11
-118	val_118	3	118val_118	val_	l_118	_11
-118	val_118	3	118val_118	val_	l_118	_11
-119	val_119	3	119val_119	val_	l_119	_11
-119	val_119	3	119val_119	val_	l_119	_11
-119	val_119	3	119val_119	val_	l_119	_11
-12	val_12	2	12val_12	val_	l_12	l_1
-12	val_12	2	12val_12	val_	l_12	l_1
-120	val_120	3	120val_120	val_	l_120	_12
-120	val_120	3	120val_120	val_	l_120	_12
-125	val_125	3	125val_125	val_	l_125	_12
-125	val_125	3	125val_125	val_	l_125	_12
-126	val_126	3	126val_126	val_	l_126	_12
-128	val_128	3	128val_128	val_	l_128	_12
-128	val_128	3	128val_128	val_	l_128	_12
-128	val_128	3	128val_128	val_	l_128	_12
-129	val_129	3	129val_129	val_	l_129	_12
-129	val_129	3	129val_129	val_	l_129	_12
-131	val_131	3	131val_131	val_	l_131	_13
-133	val_133	3	133val_133	val_	l_133	_13
-134	val_134	3	134val_134	val_	l_134	_13
-134	val_134	3	134val_134	val_	l_134	_13
-136	val_136	3	136val_136	val_	l_136	_13
-137	val_137	3	137val_137	val_	l_137	_13
-137	val_137	3	137val_137	val_	l_137	_13
-138	val_138	3	138val_138	val_	l_138	_13
-138	val_138	3	138val_138	val_	l_138	_13
-138	val_138	3	138val_138	val_	l_138	_13
-138	val_138	3	138val_138	val_	l_138	_13
-143	val_143	3	143val_143	val_	l_143	_14
-145	val_145	3	145val_145	val_	l_145	_14
-146	val_146	3	146val_146	val_	l_146	_14
-146	val_146	3	146val_146	val_	l_146	_14
-149	val_149	3	149val_149	val_	l_149	_14
-149	val_149	3	149val_149	val_	l_149	_14
-15	val_15	2	15val_15	val_	l_15	l_1
-15	val_15	2	15val_15	val_	l_15	l_1
-150	val_150	3	150val_150	val_	l_150	_15
-152	val_152	3	152val_152	val_	l_152	_15
-152	val_152	3	152val_152	val_	l_152	_15
-153	val_153	3	153val_153	val_	l_153	_15
-155	val_155	3	155val_155	val_	l_155	_15
-156	val_156	3	156val_156	val_	l_156	_15
-157	val_157	3	157val_157	val_	l_157	_15
-158	val_158	3	158val_158	val_	l_158	_15
-160	val_160	3	160val_160	val_	l_160	_16
-162	val_162	3	162val_162	val_	l_162	_16
-163	val_163	3	163val_163	val_	l_163	_16
-164	val_164	3	164val_164	val_	l_164	_16
-164	val_164	3	164val_164	val_	l_164	_16
-165	val_165	3	165val_165	val_	l_165	_16
-165	val_165	3	165val_165	val_	l_165	_16
-166	val_166	3	166val_166	val_	l_166	_16
-167	val_167	3	167val_167	val_	l_167	_16
-167	val_167	3	167val_167	val_	l_167	_16
-167	val_167	3	167val_167	val_	l_167	_16
-168	val_168	3	168val_168	val_	l_168	_16
-169	val_169	3	169val_169	val_	l_169	_16
-169	val_169	3	169val_169	val_	l_169	_16
-169	val_169	3	169val_169	val_	l_169	_16
-169	val_169	3	169val_169	val_	l_169	_16
-17	val_17	2	17val_17	val_	l_17	l_1
-170	val_170	3	170val_170	val_	l_170	_17
-172	val_172	3	172val_172	val_	l_172	_17
-172	val_172	3	172val_172	val_	l_172	_17
-174	val_174	3	174val_174	val_	l_174	_17
-174	val_174	3	174val_174	val_	l_174	_17
-175	val_175	3	175val_175	val_	l_175	_17
-175	val_175	3	175val_175	val_	l_175	_17
-176	val_176	3	176val_176	val_	l_176	_17
-176	val_176	3	176val_176	val_	l_176	_17
-177	val_177	3	177val_177	val_	l_177	_17
-178	val_178	3	178val_178	val_	l_178	_17
-179	val_179	3	179val_179	val_	l_179	_17
-179	val_179	3	179val_179	val_	l_179	_17
-18	val_18	2	18val_18	val_	l_18	l_1
-18	val_18	2	18val_18	val_	l_18	l_1
-180	val_180	3	180val_180	val_	l_180	_18
-181	val_181	3	181val_181	val_	l_181	_18
-183	val_183	3	183val_183	val_	l_183	_18
-186	val_186	3	186val_186	val_	l_186	_18
-187	val_187	3	187val_187	val_	l_187	_18
-187	val_187	3	187val_187	val_	l_187	_18
-187	val_187	3	187val_187	val_	l_187	_18
+POSTHOOK: Lineage: dest1.string SIMPLE [(src)src.FieldSchema(name:value, type:string, comment:default), ]
+POSTHOOK: Lineage: dest1.string SIMPLE []
+NULL	NULL	NULL	NULL	NULL	NULL	NULL	NULL	NULL	NULL	NULL	NULL	NULL	NULL
+0	val_0	val_0	1	0val_0	val_	l_0	al_	30	0	MA==	0	76616C5F30	val_0
+0	val_0	val_0	1	0val_0	val_	l_0	al_	30	0	MA==	0	76616C5F30	val_0
+0	val_0	val_0	1	0val_0	val_	l_0	al_	30	0	MA==	0	76616C5F30	val_0
+10	val_10	val_10	2	10val_10	val_	l_10	l_1	3130	10	MTA=	10	76616C5F3130	val_10
+100	val_100	val_100	3	100val_100	val_	l_100	_10	313030	100	MTAw	100	76616C5F313030	val_100
+100	val_100	val_100	3	100val_100	val_	l_100	_10	313030	100	MTAw	100	76616C5F313030	val_100
+103	val_103	val_103	3	103val_103	val_	l_103	_10	313033	103	MTAz	103	76616C5F313033	val_103
+103	val_103	val_103	3	103val_103	val_	l_103	_10	313033	103	MTAz	103	76616C5F313033	val_103
+104	val_104	val_104	3	104val_104	val_	l_104	_10	313034	104	MTA0	104	76616C5F313034	val_104
+104	val_104	val_104	3	104val_104	val_	l_104	_10	313034	104	MTA0	104	76616C5F313034	val_104
+105	val_105	val_105	3	105val_105	val_	l_105	_10	313035	105	MTA1	105	76616C5F313035	val_105
+11	val_11	val_11	2	11val_11	val_	l_11	l_1	3131	11	MTE=	11	76616C5F3131	val_11
+111	val_111	val_111	3	111val_111	val_	l_111	_11	313131	111	MTEx	111	76616C5F313131	val_111
+113	val_113	val_113	3	113val_113	val_	l_113	_11	313133	113	MTEz	113	76616C5F313133	val_113
+113	val_113	val_113	3	113val_113	val_	l_113	_11	313133	113	MTEz	113	76616C5F313133	val_113
+114	val_114	val_114	3	114val_114	val_	l_114	_11	313134	114	MTE0	114	76616C5F313134	val_114
+116	val_116	val_116	3	116val_116	val_	l_116	_11	313136	116	MTE2	116	76616C5F313136	val_116
+118	val_118	val_118	3	118val_118	val_	l_118	_11	313138	118	MTE4	118	76616C5F313138	val_118
+118	val_118	val_118	3	118val_118	val_	l_118	_11	313138	118	MTE4	118	76616C5F313138	val_118
+119	val_119	val_119	3	119val_119	val_	l_119	_11	313139	119	MTE5	119	76616C5F313139	val_119
+119	val_119	val_119	3	119val_119	val_	l_119	_11	313139	119	MTE5	119	76616C5F313139	val_119
+119	val_119	val_119	3	119val_119	val_	l_119	_11	313139	119	MTE5	119	76616C5F313139	val_119
+12	val_12	val_12	2	12val_12	val_	l_12	l_1	3132	12	MTI=	12	76616C5F3132	val_12
+12	val_12	val_12	2	12val_12	val_	l_12	l_1	3132	12	MTI=	12	76616C5F3132	val_12
+120	val_120	val_120	3	120val_120	val_	l_120	_12	313230	120	MTIw	120	76616C5F313230	val_120
+120	val_120	val_120	3	120val_120	val_	l_120	_12	313230	120	MTIw	120	76616C5F313230	val_120
+125	val_125	val_125	3	125val_125	val_	l_125	_12	313235	125	MTI1	125	76616C5F313235	val_125
+125	val_125	val_125	3	125val_125	val_	l_125	_12	313235	125	MTI1	125	76616C5F313235	val_125
+126	val_126	val_126	3	126val_126	val_	l_126	_12	313236	126	MTI2	126	76616C5F313236	val_126
+128	val_128	val_128	3	128val_128	val_	l_128	_12	313238	128	MTI4	128	76616C5F313238	val_128
+128	val_128	val_128	3	128val_128	val_	l_128	_12	313238	128	MTI4	128	76616C5F313238	val_128
+128	val_128	val_128	3	128val_128	val_	l_128	_12	313238	128	MTI4	128	76616C5F313238	val_128
+129	val_129	val_129	3	129val_129	val_	l_129	_12	313239	129	MTI5	129	76616C5F313239	val_129
+129	val_129	val_129	3	129val_129	val_	l_129	_12	313239	129	MTI5	129	76616C5F313239	val_129
+131	val_131	val_131	3	131val_131	val_	l_131	_13	313331	131	MTMx	131	76616C5F313331	val_131
+133	val_133	val_133	3	133val_133	val_	l_133	_13	313333	133	MTMz	133	76616C5F313333	val_133
+134	val_134	val_134	3	134val_134	val_	l_134	_13	313334	134	MTM0	134	76616C5F313334	val_134
+134	val_134	val_134	3	134val_134	val_	l_134	_13	313334	134	MTM0	134	76616C5F313334	val_134
+136	val_136	val_136	3	136val_136	val_	l_136	_13	313336	136	MTM2	136	76616C5F313336	val_136
+137	val_137	val_137	3	137val_137	val_	l_137	_13	313337	137	MTM3	137	76616C5F313337	val_137
+137	val_137	val_137	3	137val_137	val_	l_137	_13	313337	137	MTM3	137	76616C5F313337	val_137
+138	val_138	val_138	3	138val_138	val_	l_138	_13	313338	138	MTM4	138	76616C5F313338	val_138
+138	val_138	val_138	3	138val_138	val_	l_138	_13	313338	138	MTM4	138	76616C5F313338	val_138
+138	val_138	val_138	3	138val_138	val_	l_138	_13	313338	138	MTM4	138	76616C5F313338	val_138
+138	val_138	val_138	3	138val_138	val_	l_138	_13	313338	138	MTM4	138	76616C5F313338	val_138
+143	val_143	val_143	3	143val_143	val_	l_143	_14	313433	143	MTQz	143	76616C5F313433	val_143
+145	val_145	val_145	3	145val_145	val_	l_145	_14	313435	145	MTQ1	145	76616C5F313435	val_145
+146	val_146	val_146	3	146val_146	val_	l_146	_14	313436	146	MTQ2	146	76616C5F313436	val_146
+146	val_146	val_146	3	146val_146	val_	l_146	_14	313436	146	MTQ2	146	76616C5F313436	val_146
+149	val_149	val_149	3	149val_149	val_	l_149	_14	313439	149	MTQ5	149	76616C5F313439	val_149
+149	val_149	val_149	3	149val_149	val_	l_149	_14	313439	149	MTQ5	149	76616C5F313439	val_149
+15	val_15	val_15	2	15val_15	val_	l_15	l_1	3135	15	MTU=	15	76616C5F3135	val_15
+15	val_15	val_15	2	15val_15	val_	l_15	l_1	3135	15	MTU=	15	76616C5F3135	val_15
+150	val_150	val_150	3	150val_150	val_	l_150	_15	313530	150	MTUw	150	76616C5F313530	val_150
+152	val_152	val_152	3	152val_152	val_	l_152	_15	313532	152	MTUy	152	76616C5F313532	val_152
+152	val_152	val_152	3	152val_152	val_	l_152	_15	313532	152	MTUy	152	76616C5F313532	val_152
+153	val_153	val_153	3	153val_153	val_	l_153	_15	313533	153	MTUz	153	76616C5F313533	val_153
+155	val_155	val_155	3	155val_155	val_	l_155	_15	313535	155	MTU1	155	76616C5F313535	val_155
+156	val_156	val_156	3	156val_156	val_	l_156	_15	313536	156	MTU2	156	76616C5F313536	val_156
+157	val_157	val_157	3	157val_157	val_	l_157	_15	313537	157	MTU3	157	76616C5F313537	val_157
+158	val_158	val_158	3	158val_158	val_	l_158	_15	313538	158	MTU4	158	76616C5F313538	val_158
+160	val_160	val_160	3	160val_160	val_	l_160	_16	313630	160	MTYw	160	76616C5F313630	val_160
+162	val_162	val_162	3	162val_162	val_	l_162	_16	313632	162	MTYy	162	76616C5F313632	val_162
+163	val_163	val_163	3	163val_163	val_	l_163	_16	313633	163	MTYz	163	76616C5F313633	val_163
+164	val_164	val_164	3	164val_164	val_	l_164	_16	313634	164	MTY0	164	76616C5F313634	val_164
+164	val_164	val_164	3	164val_164	val_	l_164	_16	313634	164	MTY0	164	76616C5F313634	val_164
+165	val_165	val_165	3	165val_165	val_	l_165	_16	313635	165	MTY1	165	76616C5F313635	val_165
+165	val_165	val_165	3	165val_165	val_	l_165	_16	313635	165	MTY1	165	76616C5F313635	val_165
+166	val_166	val_166	3	166val_166	val_	l_166	_16	313636	166	MTY2	166	76616C5F313636	val_166
+167	val_167	val_167	3	167val_167	val_	l_167	_16	313637	167	MTY3	167	76616C5F313637	val_167
+167	val_167	val_167	3	167val_167	val_	l_167	_16	313637	167	MTY3	167	76616C5F313637	val_167
+167	val_167	val_167	3	167val_167	val_	l_167	_16	313637	167	MTY3	167	76616C5F313637	val_167
+168	val_168	val_168	3	168val_168	val_	l_168	_16	313638	168	MTY4	168	76616C5F313638	val_168
+169	val_169	val_169	3	169val_169	val_	l_169	_16	313639	169	MTY5	169	76616C5F313639	val_169
+169	val_169	val_169	3	169val_169	val_	l_169	_16	313639	169	MTY5	169	76616C5F313639	val_169
+169	val_169	val_169	3	169val_169	val_	l_169	_16	313639	169	MTY5	169	76616C5F313639	val_169
+169	val_169	val_169	3	169val_169	val_	l_169	_16	313639	169	MTY5	169	76616C5F313639	val_169
+17	val_17	val_17	2	17val_17	val_	l_17	l_1	3137	17	MTc=	17	76616C5F3137	val_17
+170	val_170	val_170	3	170val_170	val_	l_170	_17	313730	170	MTcw	170	76616C5F313730	val_170
+172	val_172	val_172	3	172val_172	val_	l_172	_17	313732	172	MTcy	172	76616C5F313732	val_172
+172	val_172	val_172	3	172val_172	val_	l_172	_17	313732	172	MTcy	172	76616C5F313732	val_172
+174	val_174	val_174	3	174val_174	val_	l_174	_17	313734	174	MTc0	174	76616C5F313734	val_174
+174	val_174	val_174	3	174val_174	val_	l_174	_17	313734	174	MTc0	174	76616C5F313734	val_174
+175	val_175	val_175	3	175val_175	val_	l_175	_17	313735	175	MTc1	175	76616C5F313735	val_175
+175	val_175	val_175	3	175val_175	val_	l_175	_17	313735	175	MTc1	175	76616C5F313735	val_175
+176	val_176	val_176	3	176val_176	val_	l_176	_17	313736	176	MTc2	176	76616C5F313736	val_176
+176	val_176	val_176	3	176val_176	val_	l_176	_17	313736	176	MTc2	176	76616C5F313736	val_176
+177	val_177	val_177	3	177val_177	val_	l_177	_17	313737	177	MTc3	177	76616C5F313737	val_177
+178	val_178	val_178	3	178val_178	val_	l_178	_17	313738	178	MTc4	178	76616C5F313738	val_178
+179	val_179	val_179	3	179val_179	val_	l_179	_17	313739	179	MTc5	179	76616C5F313739	val_179
+179	val_179	val_179	3	179val_179	val_	l_179	_17	313739	179	MTc5	179	76616C5F313739	val_179
+18	val_18	val_18	2	18val_18	val_	l_18	l_1	3138	18	MTg=	18	76616C5F3138	val_18
+18	val_18	val_18	2	18val_18	val_	l_18	l_1	3138	18	MTg=	18	76616C5F3138	val_18
+180	val_180	val_180	3	180val_180	val_	l_180	_18	313830	180	MTgw	180	76616C5F313830	val_180
+181	val_181	val_181	3	181val_181	val_	l_181	_18	313831	181	MTgx	181	76616C5F313831	val_181
+183	val_183	val_183	3	183val_183	val_	l_183	_18	313833	183	MTgz	183	76616C5F313833	val_183
+186	val_186	val_186	3	186val_186	val_	l_186	_18	313836	186	MTg2	186	76616C5F313836	val_186
+187	val_187	val_187	3	187val_187	val_	l_187	_18	313837	187	MTg3	187	76616C5F313837	val_187
+187	val_187	val_187	3	187val_187	val_	l_187	_18	313837	187	MTg3	187	76616C5F313837	val_187
+187	val_187	val_187	3	187val_187	val_	l_187	_18	313837	187	MTg3	187	76616C5F313837	val_187

Modified: hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_1.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_1.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_1.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_1.q.out Mon Aug 26 21:42:12 2013
@@ -92,6 +92,53 @@ STAGE PLANS:
         a 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-08
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types string:string
+#### A masked pattern was here ####
+                    name default.bucket_small
+                    numFiles 2
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct bucket_small { string key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 2750
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      SORTBUCKETCOLSPREFIX TRUE
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types string:string
+#### A masked pattern was here ####
+                      name default.bucket_small
+                      numFiles 2
+                      numPartitions 1
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct bucket_small { string key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 2750
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.bucket_small
+                  name: default.bucket_small
       Alias -> Map Local Operator Tree:
         a 
           TableScan

Modified: hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_2.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_2.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_2.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_2.q.out Mon Aug 26 21:42:12 2013
@@ -80,6 +80,53 @@ STAGE PLANS:
         a 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-08
+                  properties:
+                    bucket_count 4
+                    bucket_field_name key
+                    columns key,value
+                    columns.types string:string
+#### A masked pattern was here ####
+                    name default.bucket_small
+                    numFiles 4
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct bucket_small { string key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      SORTBUCKETCOLSPREFIX TRUE
+                      bucket_count 4
+                      bucket_field_name key
+                      columns key,value
+                      columns.types string:string
+#### A masked pattern was here ####
+                      name default.bucket_small
+                      numFiles 4
+                      numPartitions 1
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct bucket_small { string key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 5812
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.bucket_small
+                  name: default.bucket_small
       Alias -> Map Local Operator Tree:
         a 
           TableScan

Modified: hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_3.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_3.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_3.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_3.q.out Mon Aug 26 21:42:12 2013
@@ -80,6 +80,99 @@ STAGE PLANS:
         a 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-08
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types string:string
+#### A masked pattern was here ####
+                    name default.bucket_small
+                    numFiles 2
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct bucket_small { string key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 2750
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      SORTBUCKETCOLSPREFIX TRUE
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types string:string
+#### A masked pattern was here ####
+                      name default.bucket_small
+                      numFiles 4
+                      numPartitions 2
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct bucket_small { string key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 5500
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.bucket_small
+                  name: default.bucket_small
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-09
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types string:string
+#### A masked pattern was here ####
+                    name default.bucket_small
+                    numFiles 2
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct bucket_small { string key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 2750
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      SORTBUCKETCOLSPREFIX TRUE
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types string:string
+#### A masked pattern was here ####
+                      name default.bucket_small
+                      numFiles 4
+                      numPartitions 2
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct bucket_small { string key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 5500
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.bucket_small
+                  name: default.bucket_small
       Alias -> Map Local Operator Tree:
         a 
           TableScan

Modified: hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_4.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_4.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_4.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_4.q.out Mon Aug 26 21:42:12 2013
@@ -92,6 +92,99 @@ STAGE PLANS:
         a 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-08
+                  properties:
+                    bucket_count 4
+                    bucket_field_name key
+                    columns key,value
+                    columns.types string:string
+#### A masked pattern was here ####
+                    name default.bucket_small
+                    numFiles 4
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct bucket_small { string key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      SORTBUCKETCOLSPREFIX TRUE
+                      bucket_count 4
+                      bucket_field_name key
+                      columns key,value
+                      columns.types string:string
+#### A masked pattern was here ####
+                      name default.bucket_small
+                      numFiles 8
+                      numPartitions 2
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct bucket_small { string key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 11624
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.bucket_small
+                  name: default.bucket_small
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-09
+                  properties:
+                    bucket_count 4
+                    bucket_field_name key
+                    columns key,value
+                    columns.types string:string
+#### A masked pattern was here ####
+                    name default.bucket_small
+                    numFiles 4
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct bucket_small { string key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      SORTBUCKETCOLSPREFIX TRUE
+                      bucket_count 4
+                      bucket_field_name key
+                      columns key,value
+                      columns.types string:string
+#### A masked pattern was here ####
+                      name default.bucket_small
+                      numFiles 8
+                      numPartitions 2
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct bucket_small { string key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 11624
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.bucket_small
+                  name: default.bucket_small
       Alias -> Map Local Operator Tree:
         a 
           TableScan

Modified: hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_7.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_7.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_7.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_7.q.out Mon Aug 26 21:42:12 2013
@@ -105,6 +105,99 @@ STAGE PLANS:
         a 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-08
+                  properties:
+                    bucket_count 4
+                    bucket_field_name key
+                    columns key,value
+                    columns.types string:string
+#### A masked pattern was here ####
+                    name default.bucket_small
+                    numFiles 4
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct bucket_small { string key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      SORTBUCKETCOLSPREFIX TRUE
+                      bucket_count 4
+                      bucket_field_name key
+                      columns key,value
+                      columns.types string:string
+#### A masked pattern was here ####
+                      name default.bucket_small
+                      numFiles 8
+                      numPartitions 2
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct bucket_small { string key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 11624
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.bucket_small
+                  name: default.bucket_small
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-09
+                  properties:
+                    bucket_count 4
+                    bucket_field_name key
+                    columns key,value
+                    columns.types string:string
+#### A masked pattern was here ####
+                    name default.bucket_small
+                    numFiles 4
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct bucket_small { string key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      SORTBUCKETCOLSPREFIX TRUE
+                      bucket_count 4
+                      bucket_field_name key
+                      columns key,value
+                      columns.types string:string
+#### A masked pattern was here ####
+                      name default.bucket_small
+                      numFiles 8
+                      numPartitions 2
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct bucket_small { string key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 11624
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.bucket_small
+                  name: default.bucket_small
       Alias -> Map Local Operator Tree:
         a 
           TableScan

Modified: hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_8.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_8.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_8.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/bucketcontext_8.q.out Mon Aug 26 21:42:12 2013
@@ -105,6 +105,99 @@ STAGE PLANS:
         a 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-08
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types string:string
+#### A masked pattern was here ####
+                    name default.bucket_small
+                    numFiles 2
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct bucket_small { string key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 2750
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      SORTBUCKETCOLSPREFIX TRUE
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types string:string
+#### A masked pattern was here ####
+                      name default.bucket_small
+                      numFiles 4
+                      numPartitions 2
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct bucket_small { string key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 5500
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.bucket_small
+                  name: default.bucket_small
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-09
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types string:string
+#### A masked pattern was here ####
+                    name default.bucket_small
+                    numFiles 2
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct bucket_small { string key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 2750
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      SORTBUCKETCOLSPREFIX TRUE
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types string:string
+#### A masked pattern was here ####
+                      name default.bucket_small
+                      numFiles 4
+                      numPartitions 2
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct bucket_small { string key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 5500
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.bucket_small
+                  name: default.bucket_small
       Alias -> Map Local Operator Tree:
         a 
           TableScan

Modified: hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin1.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin1.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin1.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin1.q.out Mon Aug 26 21:42:12 2013
@@ -351,6 +351,52 @@ STAGE PLANS:
         b 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-08
+                  properties:
+                    bucket_count 4
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part
+                    numFiles 4
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 4
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part
+                      numFiles 4
+                      numPartitions 1
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 5812
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part
+                  name: default.srcbucket_mapjoin_part
       Alias -> Map Local Operator Tree:
         b 
           TableScan

Modified: hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin10.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin10.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin10.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin10.q.out Mon Aug 26 21:42:12 2013
@@ -129,6 +129,97 @@ STAGE PLANS:
         b 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    part 1
+                  properties:
+                    bucket_count 3
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 3
+                    numRows 0
+                    partition_columns part
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 4200
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 3
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 5
+                      numPartitions 2
+                      numRows 0
+                      partition_columns part
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 6950
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    part 2
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 2
+                    numRows 0
+                    partition_columns part
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 2750
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 3
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 5
+                      numPartitions 2
+                      numRows 0
+                      partition_columns part
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 6950
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
       Alias -> Map Local Operator Tree:
         b 
           TableScan

Modified: hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin11.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin11.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin11.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin11.q.out Mon Aug 26 21:42:12 2013
@@ -135,6 +135,97 @@ STAGE PLANS:
         b 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    part 1
+                  properties:
+                    bucket_count 4
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 4
+                    numRows 0
+                    partition_columns part
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 6
+                      numPartitions 2
+                      numRows 0
+                      partition_columns part
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 8562
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    part 2
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 2
+                    numRows 0
+                    partition_columns part
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 2750
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 6
+                      numPartitions 2
+                      numRows 0
+                      partition_columns part
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 8562
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
       Alias -> Map Local Operator Tree:
         b 
           TableScan
@@ -376,6 +467,97 @@ STAGE PLANS:
         b 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    part 1
+                  properties:
+                    bucket_count 4
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 4
+                    numRows 0
+                    partition_columns part
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 6
+                      numPartitions 2
+                      numRows 0
+                      partition_columns part
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 8562
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    part 2
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 2
+                    numRows 0
+                    partition_columns part
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 2750
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 6
+                      numPartitions 2
+                      numRows 0
+                      partition_columns part
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 8562
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
       Alias -> Map Local Operator Tree:
         b 
           TableScan

Modified: hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin12.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin12.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin12.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin12.q.out Mon Aug 26 21:42:12 2013
@@ -103,6 +103,51 @@ STAGE PLANS:
         b 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    part 1
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 2
+                    numRows 0
+                    partition_columns part
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 2750
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count -1
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 2
+                      numPartitions 1
+                      numRows 0
+                      partition_columns part
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 2750
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
       Alias -> Map Local Operator Tree:
         b 
           TableScan
@@ -296,6 +341,51 @@ STAGE PLANS:
         b 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    part 1
+                  properties:
+                    bucket_count -1
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_3
+                    numFiles 2
+                    numRows 0
+                    partition_columns part
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part_3 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 2750
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_3
+                      numFiles 2
+                      numPartitions 1
+                      numRows 0
+                      partition_columns part
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part_3 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 2750
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_3
+                  name: default.srcbucket_mapjoin_part_3
       Alias -> Map Local Operator Tree:
         b 
           TableScan

Modified: hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin13.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin13.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin13.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin13.q.out Mon Aug 26 21:42:12 2013
@@ -109,6 +109,52 @@ STAGE PLANS:
         b 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    part 1
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 2
+                    numRows 500
+                    partition_columns part
+                    rawDataSize 5312
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 2
+                      numPartitions 1
+                      numRows 500
+                      partition_columns part
+                      rawDataSize 5312
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 5812
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
       Alias -> Map Local Operator Tree:
         b 
           TableScan
@@ -356,6 +402,52 @@ STAGE PLANS:
         b 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    part 1
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 2
+                    numRows 500
+                    partition_columns part
+                    rawDataSize 5312
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 2
+                      numPartitions 1
+                      numRows 500
+                      partition_columns part
+                      rawDataSize 5312
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 5812
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
       Alias -> Map Local Operator Tree:
         b 
           TableScan
@@ -575,6 +667,52 @@ STAGE PLANS:
         b 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    part 1
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 2
+                    numRows 500
+                    partition_columns part
+                    rawDataSize 5312
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 2
+                      numPartitions 1
+                      numRows 500
+                      partition_columns part
+                      rawDataSize 5312
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 5812
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
       Alias -> Map Local Operator Tree:
         b 
           TableScan
@@ -796,6 +934,52 @@ STAGE PLANS:
         b 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    part 1
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 2
+                    numRows 500
+                    partition_columns part
+                    rawDataSize 5312
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 2
+                      numPartitions 1
+                      numRows 500
+                      partition_columns part
+                      rawDataSize 5312
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 5812
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
       Alias -> Map Local Operator Tree:
         b 
           TableScan

Modified: hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin2.q.out
URL: http://svn.apache.org/viewvc/hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin2.q.out?rev=1517707&r1=1517706&r2=1517707&view=diff
==============================================================================
--- hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin2.q.out (original)
+++ hive/branches/tez/ql/src/test/results/clientpositive/bucketmapjoin2.q.out Mon Aug 26 21:42:12 2013
@@ -94,6 +94,52 @@ STAGE PLANS:
         b 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-08
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 2
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 3062
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 2
+                      numPartitions 1
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 3062
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
       Alias -> Map Local Operator Tree:
         b 
           TableScan
@@ -588,6 +634,52 @@ STAGE PLANS:
         a 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-08
+                  properties:
+                    bucket_count 4
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part
+                    numFiles 4
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 5812
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 4
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part
+                      numFiles 4
+                      numPartitions 1
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 5812
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part
+                  name: default.srcbucket_mapjoin_part
       Alias -> Map Local Operator Tree:
         a 
           TableScan
@@ -1281,6 +1373,97 @@ STAGE PLANS:
         b 
           Fetch Operator
             limit: -1
+            Partition Description:
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-08
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 2
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 3062
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 4
+                      numPartitions 2
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 6124
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
+                Partition
+                  input format: org.apache.hadoop.mapred.TextInputFormat
+                  output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                  partition values:
+                    ds 2008-04-09
+                  properties:
+                    bucket_count 2
+                    bucket_field_name key
+                    columns key,value
+                    columns.types int:string
+#### A masked pattern was here ####
+                    name default.srcbucket_mapjoin_part_2
+                    numFiles 2
+                    numRows 0
+                    partition_columns ds
+                    rawDataSize 0
+                    serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                    serialization.format 1
+                    serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    totalSize 3062
+#### A masked pattern was here ####
+                  serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                
+                    input format: org.apache.hadoop.mapred.TextInputFormat
+                    output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
+                    properties:
+                      bucket_count 2
+                      bucket_field_name key
+                      columns key,value
+                      columns.types int:string
+#### A masked pattern was here ####
+                      name default.srcbucket_mapjoin_part_2
+                      numFiles 4
+                      numPartitions 2
+                      numRows 0
+                      partition_columns ds
+                      rawDataSize 0
+                      serialization.ddl struct srcbucket_mapjoin_part_2 { i32 key, string value}
+                      serialization.format 1
+                      serialization.lib org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                      totalSize 6124
+#### A masked pattern was here ####
+                    serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
+                    name: default.srcbucket_mapjoin_part_2
+                  name: default.srcbucket_mapjoin_part_2
       Alias -> Map Local Operator Tree:
         b 
           TableScan