You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by na...@apache.org on 2009/12/01 07:24:55 UTC

svn commit: r885676 [1/6] - in /hadoop/hive/trunk: ./ metastore/src/java/org/apache/hadoop/hive/metastore/ ql/src/java/org/apache/hadoop/hive/ql/plan/ ql/src/test/queries/clientpositive/ ql/src/test/results/clientpositive/ ql/src/test/results/compiler/...

Author: namit
Date: Tue Dec  1 06:24:53 2009
New Revision: 885676

URL: http://svn.apache.org/viewvc?rev=885676&view=rev
Log:
HIVE-957 Separate table and partition metadata
(He Yongqiang via namit)


Added:
    hadoop/hive/trunk/ql/src/test/queries/clientpositive/partition_vs_table_metadata.q
    hadoop/hive/trunk/ql/src/test/results/clientpositive/partition_vs_table_metadata.q.out
Modified:
    hadoop/hive/trunk/CHANGES.txt
    hadoop/hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java
    hadoop/hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/plan/partitionDesc.java
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/case_sensitivity.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/cast1.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby1.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby2.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby3.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby4.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby5.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby6.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input1.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input2.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input20.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input3.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input4.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input5.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input6.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input7.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input8.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input9.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input_part1.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input_testsequencefile.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input_testxpath.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/input_testxpath2.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/join1.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/join2.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/join3.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/join4.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/join5.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/join6.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/join7.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/join8.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/sample1.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/sample2.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/sample3.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/sample4.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/sample5.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/sample6.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/sample7.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/subq.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/udf1.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/udf4.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/udf6.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/udf_case.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/udf_when.q.xml
    hadoop/hive/trunk/ql/src/test/results/compiler/plan/union.q.xml

Modified: hadoop/hive/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/CHANGES.txt?rev=885676&r1=885675&r2=885676&view=diff
==============================================================================
--- hadoop/hive/trunk/CHANGES.txt (original)
+++ hadoop/hive/trunk/CHANGES.txt Tue Dec  1 06:24:53 2009
@@ -287,6 +287,9 @@
     HIVE-953 Fix test script_broken_pipe3.q
     (Paul Yang via namit)
 
+    HIVE-957 Separate table and partition metadata
+    (He Yongqiang via namit)
+
 Release 0.4.0 -  Unreleased
 
   INCOMPATIBLE CHANGES

Modified: hadoop/hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java?rev=885676&r1=885675&r2=885676&view=diff
==============================================================================
--- hadoop/hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java (original)
+++ hadoop/hive/trunk/metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java Tue Dec  1 06:24:53 2009
@@ -486,14 +486,18 @@
   }
   
   public static Properties getSchema(org.apache.hadoop.hive.metastore.api.Table table) {
-  	return MetaStoreUtils.getSchema(table.getSd(), table.getParameters(), table.getTableName(), table.getPartitionKeys());
+  	return MetaStoreUtils.getSchema(table.getSd(),table.getSd(), table.getParameters(), table.getTableName(), table.getPartitionKeys());
   }
   
   public static Properties getSchema(org.apache.hadoop.hive.metastore.api.Partition part, org.apache.hadoop.hive.metastore.api.Table table) {
-  	return MetaStoreUtils.getSchema(part.getSd(), part.getParameters(), table.getTableName(), table.getPartitionKeys());
+  	return MetaStoreUtils.getSchema(part.getSd(), table.getSd(), table.getParameters(), table.getTableName(), table.getPartitionKeys());
   }
   
-  public static Properties getSchema(org.apache.hadoop.hive.metastore.api.StorageDescriptor sd, Map<String, String> parameters, String tableName, List<FieldSchema> partitionKeys) {
+  public static Properties getSchema(
+      org.apache.hadoop.hive.metastore.api.StorageDescriptor sd,
+      org.apache.hadoop.hive.metastore.api.StorageDescriptor tblsd,
+      Map<String, String> parameters, String tableName,
+      List<FieldSchema> partitionKeys) {
     Properties schema = new Properties();
     String inputFormat = sd.getInputFormat();
     if(inputFormat == null || inputFormat.length() == 0) {
@@ -520,7 +524,7 @@
     StringBuilder colNameBuf = new StringBuilder();
     StringBuilder colTypeBuf = new StringBuilder();
     boolean first = true;
-    for (FieldSchema col: sd.getCols()) {
+    for (FieldSchema col: tblsd.getCols()) {
       if (!first) {
         colNameBuf.append(",");
         colTypeBuf.append(":");

Modified: hadoop/hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/plan/partitionDesc.java
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/plan/partitionDesc.java?rev=885676&r1=885675&r2=885676&view=diff
==============================================================================
--- hadoop/hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/plan/partitionDesc.java (original)
+++ hadoop/hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/plan/partitionDesc.java Tue Dec  1 06:24:53 2009
@@ -133,8 +133,8 @@
   
   @explain(displayName="properties", normalExplain=false)
   public java.util.Properties getProperties() {
-  	if ( this.serdeClassName == null && this.properties == null && this.table !=null)
-  		setProperties(this.table.getProperties());
+    if(this.table !=null)
+      return this.table.getProperties();
     return this.properties;
   }
   

Added: hadoop/hive/trunk/ql/src/test/queries/clientpositive/partition_vs_table_metadata.q
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/ql/src/test/queries/clientpositive/partition_vs_table_metadata.q?rev=885676&view=auto
==============================================================================
--- hadoop/hive/trunk/ql/src/test/queries/clientpositive/partition_vs_table_metadata.q (added)
+++ hadoop/hive/trunk/ql/src/test/queries/clientpositive/partition_vs_table_metadata.q Tue Dec  1 06:24:53 2009
@@ -0,0 +1,13 @@
+drop table partition_vs_table;
+
+create table partition_vs_table(key string, value string) partitioned by (ds string);
+
+insert overwrite table partition_vs_table partition(ds='100') select key, value from src;
+
+alter table partition_vs_table add columns (newcol string); 
+
+insert overwrite table partition_vs_table partition(ds='101') select key, value, key from src;
+
+select key, value, newcol from partition_vs_table;
+
+drop table partition_vs_table;
\ No newline at end of file

Added: hadoop/hive/trunk/ql/src/test/results/clientpositive/partition_vs_table_metadata.q.out
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/ql/src/test/results/clientpositive/partition_vs_table_metadata.q.out?rev=885676&view=auto
==============================================================================
--- hadoop/hive/trunk/ql/src/test/results/clientpositive/partition_vs_table_metadata.q.out (added)
+++ hadoop/hive/trunk/ql/src/test/results/clientpositive/partition_vs_table_metadata.q.out Tue Dec  1 06:24:53 2009
@@ -0,0 +1,1046 @@
+PREHOOK: query: drop table partition_vs_table
+PREHOOK: type: DROPTABLE
+POSTHOOK: query: drop table partition_vs_table
+POSTHOOK: type: DROPTABLE
+PREHOOK: query: create table partition_vs_table(key string, value string) partitioned by (ds string)
+PREHOOK: type: CREATETABLE
+POSTHOOK: query: create table partition_vs_table(key string, value string) partitioned by (ds string)
+POSTHOOK: type: CREATETABLE
+POSTHOOK: Output: default@partition_vs_table
+PREHOOK: query: insert overwrite table partition_vs_table partition(ds='100') select key, value from src
+PREHOOK: type: QUERY
+PREHOOK: Input: default@src
+PREHOOK: Output: default@partition_vs_table@ds=100
+POSTHOOK: query: insert overwrite table partition_vs_table partition(ds='100') select key, value from src
+POSTHOOK: type: QUERY
+POSTHOOK: Input: default@src
+POSTHOOK: Output: default@partition_vs_table@ds=100
+PREHOOK: query: alter table partition_vs_table add columns (newcol string)
+PREHOOK: type: ALTERTABLE_ADDCOLS
+POSTHOOK: query: alter table partition_vs_table add columns (newcol string)
+POSTHOOK: type: ALTERTABLE_ADDCOLS
+POSTHOOK: Input: default@partition_vs_table
+POSTHOOK: Output: default@partition_vs_table
+PREHOOK: query: insert overwrite table partition_vs_table partition(ds='101') select key, value, key from src
+PREHOOK: type: QUERY
+PREHOOK: Input: default@src
+PREHOOK: Output: default@partition_vs_table@ds=101
+POSTHOOK: query: insert overwrite table partition_vs_table partition(ds='101') select key, value, key from src
+POSTHOOK: type: QUERY
+POSTHOOK: Input: default@src
+POSTHOOK: Output: default@partition_vs_table@ds=101
+PREHOOK: query: select key, value, newcol from partition_vs_table
+PREHOOK: type: QUERY
+PREHOOK: Input: default@partition_vs_table@ds=100
+PREHOOK: Input: default@partition_vs_table@ds=101
+PREHOOK: Output: file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/1354905847/10000
+POSTHOOK: query: select key, value, newcol from partition_vs_table
+POSTHOOK: type: QUERY
+POSTHOOK: Input: default@partition_vs_table@ds=100
+POSTHOOK: Input: default@partition_vs_table@ds=101
+POSTHOOK: Output: file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/1354905847/10000
+238	val_238	NULL
+86	val_86	NULL
+311	val_311	NULL
+27	val_27	NULL
+165	val_165	NULL
+409	val_409	NULL
+255	val_255	NULL
+278	val_278	NULL
+98	val_98	NULL
+484	val_484	NULL
+265	val_265	NULL
+193	val_193	NULL
+401	val_401	NULL
+150	val_150	NULL
+273	val_273	NULL
+224	val_224	NULL
+369	val_369	NULL
+66	val_66	NULL
+128	val_128	NULL
+213	val_213	NULL
+146	val_146	NULL
+406	val_406	NULL
+429	val_429	NULL
+374	val_374	NULL
+152	val_152	NULL
+469	val_469	NULL
+145	val_145	NULL
+495	val_495	NULL
+37	val_37	NULL
+327	val_327	NULL
+281	val_281	NULL
+277	val_277	NULL
+209	val_209	NULL
+15	val_15	NULL
+82	val_82	NULL
+403	val_403	NULL
+166	val_166	NULL
+417	val_417	NULL
+430	val_430	NULL
+252	val_252	NULL
+292	val_292	NULL
+219	val_219	NULL
+287	val_287	NULL
+153	val_153	NULL
+193	val_193	NULL
+338	val_338	NULL
+446	val_446	NULL
+459	val_459	NULL
+394	val_394	NULL
+237	val_237	NULL
+482	val_482	NULL
+174	val_174	NULL
+413	val_413	NULL
+494	val_494	NULL
+207	val_207	NULL
+199	val_199	NULL
+466	val_466	NULL
+208	val_208	NULL
+174	val_174	NULL
+399	val_399	NULL
+396	val_396	NULL
+247	val_247	NULL
+417	val_417	NULL
+489	val_489	NULL
+162	val_162	NULL
+377	val_377	NULL
+397	val_397	NULL
+309	val_309	NULL
+365	val_365	NULL
+266	val_266	NULL
+439	val_439	NULL
+342	val_342	NULL
+367	val_367	NULL
+325	val_325	NULL
+167	val_167	NULL
+195	val_195	NULL
+475	val_475	NULL
+17	val_17	NULL
+113	val_113	NULL
+155	val_155	NULL
+203	val_203	NULL
+339	val_339	NULL
+0	val_0	NULL
+455	val_455	NULL
+128	val_128	NULL
+311	val_311	NULL
+316	val_316	NULL
+57	val_57	NULL
+302	val_302	NULL
+205	val_205	NULL
+149	val_149	NULL
+438	val_438	NULL
+345	val_345	NULL
+129	val_129	NULL
+170	val_170	NULL
+20	val_20	NULL
+489	val_489	NULL
+157	val_157	NULL
+378	val_378	NULL
+221	val_221	NULL
+92	val_92	NULL
+111	val_111	NULL
+47	val_47	NULL
+72	val_72	NULL
+4	val_4	NULL
+280	val_280	NULL
+35	val_35	NULL
+427	val_427	NULL
+277	val_277	NULL
+208	val_208	NULL
+356	val_356	NULL
+399	val_399	NULL
+169	val_169	NULL
+382	val_382	NULL
+498	val_498	NULL
+125	val_125	NULL
+386	val_386	NULL
+437	val_437	NULL
+469	val_469	NULL
+192	val_192	NULL
+286	val_286	NULL
+187	val_187	NULL
+176	val_176	NULL
+54	val_54	NULL
+459	val_459	NULL
+51	val_51	NULL
+138	val_138	NULL
+103	val_103	NULL
+239	val_239	NULL
+213	val_213	NULL
+216	val_216	NULL
+430	val_430	NULL
+278	val_278	NULL
+176	val_176	NULL
+289	val_289	NULL
+221	val_221	NULL
+65	val_65	NULL
+318	val_318	NULL
+332	val_332	NULL
+311	val_311	NULL
+275	val_275	NULL
+137	val_137	NULL
+241	val_241	NULL
+83	val_83	NULL
+333	val_333	NULL
+180	val_180	NULL
+284	val_284	NULL
+12	val_12	NULL
+230	val_230	NULL
+181	val_181	NULL
+67	val_67	NULL
+260	val_260	NULL
+404	val_404	NULL
+384	val_384	NULL
+489	val_489	NULL
+353	val_353	NULL
+373	val_373	NULL
+272	val_272	NULL
+138	val_138	NULL
+217	val_217	NULL
+84	val_84	NULL
+348	val_348	NULL
+466	val_466	NULL
+58	val_58	NULL
+8	val_8	NULL
+411	val_411	NULL
+230	val_230	NULL
+208	val_208	NULL
+348	val_348	NULL
+24	val_24	NULL
+463	val_463	NULL
+431	val_431	NULL
+179	val_179	NULL
+172	val_172	NULL
+42	val_42	NULL
+129	val_129	NULL
+158	val_158	NULL
+119	val_119	NULL
+496	val_496	NULL
+0	val_0	NULL
+322	val_322	NULL
+197	val_197	NULL
+468	val_468	NULL
+393	val_393	NULL
+454	val_454	NULL
+100	val_100	NULL
+298	val_298	NULL
+199	val_199	NULL
+191	val_191	NULL
+418	val_418	NULL
+96	val_96	NULL
+26	val_26	NULL
+165	val_165	NULL
+327	val_327	NULL
+230	val_230	NULL
+205	val_205	NULL
+120	val_120	NULL
+131	val_131	NULL
+51	val_51	NULL
+404	val_404	NULL
+43	val_43	NULL
+436	val_436	NULL
+156	val_156	NULL
+469	val_469	NULL
+468	val_468	NULL
+308	val_308	NULL
+95	val_95	NULL
+196	val_196	NULL
+288	val_288	NULL
+481	val_481	NULL
+457	val_457	NULL
+98	val_98	NULL
+282	val_282	NULL
+197	val_197	NULL
+187	val_187	NULL
+318	val_318	NULL
+318	val_318	NULL
+409	val_409	NULL
+470	val_470	NULL
+137	val_137	NULL
+369	val_369	NULL
+316	val_316	NULL
+169	val_169	NULL
+413	val_413	NULL
+85	val_85	NULL
+77	val_77	NULL
+0	val_0	NULL
+490	val_490	NULL
+87	val_87	NULL
+364	val_364	NULL
+179	val_179	NULL
+118	val_118	NULL
+134	val_134	NULL
+395	val_395	NULL
+282	val_282	NULL
+138	val_138	NULL
+238	val_238	NULL
+419	val_419	NULL
+15	val_15	NULL
+118	val_118	NULL
+72	val_72	NULL
+90	val_90	NULL
+307	val_307	NULL
+19	val_19	NULL
+435	val_435	NULL
+10	val_10	NULL
+277	val_277	NULL
+273	val_273	NULL
+306	val_306	NULL
+224	val_224	NULL
+309	val_309	NULL
+389	val_389	NULL
+327	val_327	NULL
+242	val_242	NULL
+369	val_369	NULL
+392	val_392	NULL
+272	val_272	NULL
+331	val_331	NULL
+401	val_401	NULL
+242	val_242	NULL
+452	val_452	NULL
+177	val_177	NULL
+226	val_226	NULL
+5	val_5	NULL
+497	val_497	NULL
+402	val_402	NULL
+396	val_396	NULL
+317	val_317	NULL
+395	val_395	NULL
+58	val_58	NULL
+35	val_35	NULL
+336	val_336	NULL
+95	val_95	NULL
+11	val_11	NULL
+168	val_168	NULL
+34	val_34	NULL
+229	val_229	NULL
+233	val_233	NULL
+143	val_143	NULL
+472	val_472	NULL
+322	val_322	NULL
+498	val_498	NULL
+160	val_160	NULL
+195	val_195	NULL
+42	val_42	NULL
+321	val_321	NULL
+430	val_430	NULL
+119	val_119	NULL
+489	val_489	NULL
+458	val_458	NULL
+78	val_78	NULL
+76	val_76	NULL
+41	val_41	NULL
+223	val_223	NULL
+492	val_492	NULL
+149	val_149	NULL
+449	val_449	NULL
+218	val_218	NULL
+228	val_228	NULL
+138	val_138	NULL
+453	val_453	NULL
+30	val_30	NULL
+209	val_209	NULL
+64	val_64	NULL
+468	val_468	NULL
+76	val_76	NULL
+74	val_74	NULL
+342	val_342	NULL
+69	val_69	NULL
+230	val_230	NULL
+33	val_33	NULL
+368	val_368	NULL
+103	val_103	NULL
+296	val_296	NULL
+113	val_113	NULL
+216	val_216	NULL
+367	val_367	NULL
+344	val_344	NULL
+167	val_167	NULL
+274	val_274	NULL
+219	val_219	NULL
+239	val_239	NULL
+485	val_485	NULL
+116	val_116	NULL
+223	val_223	NULL
+256	val_256	NULL
+263	val_263	NULL
+70	val_70	NULL
+487	val_487	NULL
+480	val_480	NULL
+401	val_401	NULL
+288	val_288	NULL
+191	val_191	NULL
+5	val_5	NULL
+244	val_244	NULL
+438	val_438	NULL
+128	val_128	NULL
+467	val_467	NULL
+432	val_432	NULL
+202	val_202	NULL
+316	val_316	NULL
+229	val_229	NULL
+469	val_469	NULL
+463	val_463	NULL
+280	val_280	NULL
+2	val_2	NULL
+35	val_35	NULL
+283	val_283	NULL
+331	val_331	NULL
+235	val_235	NULL
+80	val_80	NULL
+44	val_44	NULL
+193	val_193	NULL
+321	val_321	NULL
+335	val_335	NULL
+104	val_104	NULL
+466	val_466	NULL
+366	val_366	NULL
+175	val_175	NULL
+403	val_403	NULL
+483	val_483	NULL
+53	val_53	NULL
+105	val_105	NULL
+257	val_257	NULL
+406	val_406	NULL
+409	val_409	NULL
+190	val_190	NULL
+406	val_406	NULL
+401	val_401	NULL
+114	val_114	NULL
+258	val_258	NULL
+90	val_90	NULL
+203	val_203	NULL
+262	val_262	NULL
+348	val_348	NULL
+424	val_424	NULL
+12	val_12	NULL
+396	val_396	NULL
+201	val_201	NULL
+217	val_217	NULL
+164	val_164	NULL
+431	val_431	NULL
+454	val_454	NULL
+478	val_478	NULL
+298	val_298	NULL
+125	val_125	NULL
+431	val_431	NULL
+164	val_164	NULL
+424	val_424	NULL
+187	val_187	NULL
+382	val_382	NULL
+5	val_5	NULL
+70	val_70	NULL
+397	val_397	NULL
+480	val_480	NULL
+291	val_291	NULL
+24	val_24	NULL
+351	val_351	NULL
+255	val_255	NULL
+104	val_104	NULL
+70	val_70	NULL
+163	val_163	NULL
+438	val_438	NULL
+119	val_119	NULL
+414	val_414	NULL
+200	val_200	NULL
+491	val_491	NULL
+237	val_237	NULL
+439	val_439	NULL
+360	val_360	NULL
+248	val_248	NULL
+479	val_479	NULL
+305	val_305	NULL
+417	val_417	NULL
+199	val_199	NULL
+444	val_444	NULL
+120	val_120	NULL
+429	val_429	NULL
+169	val_169	NULL
+443	val_443	NULL
+323	val_323	NULL
+325	val_325	NULL
+277	val_277	NULL
+230	val_230	NULL
+478	val_478	NULL
+178	val_178	NULL
+468	val_468	NULL
+310	val_310	NULL
+317	val_317	NULL
+333	val_333	NULL
+493	val_493	NULL
+460	val_460	NULL
+207	val_207	NULL
+249	val_249	NULL
+265	val_265	NULL
+480	val_480	NULL
+83	val_83	NULL
+136	val_136	NULL
+353	val_353	NULL
+172	val_172	NULL
+214	val_214	NULL
+462	val_462	NULL
+233	val_233	NULL
+406	val_406	NULL
+133	val_133	NULL
+175	val_175	NULL
+189	val_189	NULL
+454	val_454	NULL
+375	val_375	NULL
+401	val_401	NULL
+421	val_421	NULL
+407	val_407	NULL
+384	val_384	NULL
+256	val_256	NULL
+26	val_26	NULL
+134	val_134	NULL
+67	val_67	NULL
+384	val_384	NULL
+379	val_379	NULL
+18	val_18	NULL
+462	val_462	NULL
+492	val_492	NULL
+100	val_100	NULL
+298	val_298	NULL
+9	val_9	NULL
+341	val_341	NULL
+498	val_498	NULL
+146	val_146	NULL
+458	val_458	NULL
+362	val_362	NULL
+186	val_186	NULL
+285	val_285	NULL
+348	val_348	NULL
+167	val_167	NULL
+18	val_18	NULL
+273	val_273	NULL
+183	val_183	NULL
+281	val_281	NULL
+344	val_344	NULL
+97	val_97	NULL
+469	val_469	NULL
+315	val_315	NULL
+84	val_84	NULL
+28	val_28	NULL
+37	val_37	NULL
+448	val_448	NULL
+152	val_152	NULL
+348	val_348	NULL
+307	val_307	NULL
+194	val_194	NULL
+414	val_414	NULL
+477	val_477	NULL
+222	val_222	NULL
+126	val_126	NULL
+90	val_90	NULL
+169	val_169	NULL
+403	val_403	NULL
+400	val_400	NULL
+200	val_200	NULL
+97	val_97	NULL
+238	val_238	238
+86	val_86	86
+311	val_311	311
+27	val_27	27
+165	val_165	165
+409	val_409	409
+255	val_255	255
+278	val_278	278
+98	val_98	98
+484	val_484	484
+265	val_265	265
+193	val_193	193
+401	val_401	401
+150	val_150	150
+273	val_273	273
+224	val_224	224
+369	val_369	369
+66	val_66	66
+128	val_128	128
+213	val_213	213
+146	val_146	146
+406	val_406	406
+429	val_429	429
+374	val_374	374
+152	val_152	152
+469	val_469	469
+145	val_145	145
+495	val_495	495
+37	val_37	37
+327	val_327	327
+281	val_281	281
+277	val_277	277
+209	val_209	209
+15	val_15	15
+82	val_82	82
+403	val_403	403
+166	val_166	166
+417	val_417	417
+430	val_430	430
+252	val_252	252
+292	val_292	292
+219	val_219	219
+287	val_287	287
+153	val_153	153
+193	val_193	193
+338	val_338	338
+446	val_446	446
+459	val_459	459
+394	val_394	394
+237	val_237	237
+482	val_482	482
+174	val_174	174
+413	val_413	413
+494	val_494	494
+207	val_207	207
+199	val_199	199
+466	val_466	466
+208	val_208	208
+174	val_174	174
+399	val_399	399
+396	val_396	396
+247	val_247	247
+417	val_417	417
+489	val_489	489
+162	val_162	162
+377	val_377	377
+397	val_397	397
+309	val_309	309
+365	val_365	365
+266	val_266	266
+439	val_439	439
+342	val_342	342
+367	val_367	367
+325	val_325	325
+167	val_167	167
+195	val_195	195
+475	val_475	475
+17	val_17	17
+113	val_113	113
+155	val_155	155
+203	val_203	203
+339	val_339	339
+0	val_0	0
+455	val_455	455
+128	val_128	128
+311	val_311	311
+316	val_316	316
+57	val_57	57
+302	val_302	302
+205	val_205	205
+149	val_149	149
+438	val_438	438
+345	val_345	345
+129	val_129	129
+170	val_170	170
+20	val_20	20
+489	val_489	489
+157	val_157	157
+378	val_378	378
+221	val_221	221
+92	val_92	92
+111	val_111	111
+47	val_47	47
+72	val_72	72
+4	val_4	4
+280	val_280	280
+35	val_35	35
+427	val_427	427
+277	val_277	277
+208	val_208	208
+356	val_356	356
+399	val_399	399
+169	val_169	169
+382	val_382	382
+498	val_498	498
+125	val_125	125
+386	val_386	386
+437	val_437	437
+469	val_469	469
+192	val_192	192
+286	val_286	286
+187	val_187	187
+176	val_176	176
+54	val_54	54
+459	val_459	459
+51	val_51	51
+138	val_138	138
+103	val_103	103
+239	val_239	239
+213	val_213	213
+216	val_216	216
+430	val_430	430
+278	val_278	278
+176	val_176	176
+289	val_289	289
+221	val_221	221
+65	val_65	65
+318	val_318	318
+332	val_332	332
+311	val_311	311
+275	val_275	275
+137	val_137	137
+241	val_241	241
+83	val_83	83
+333	val_333	333
+180	val_180	180
+284	val_284	284
+12	val_12	12
+230	val_230	230
+181	val_181	181
+67	val_67	67
+260	val_260	260
+404	val_404	404
+384	val_384	384
+489	val_489	489
+353	val_353	353
+373	val_373	373
+272	val_272	272
+138	val_138	138
+217	val_217	217
+84	val_84	84
+348	val_348	348
+466	val_466	466
+58	val_58	58
+8	val_8	8
+411	val_411	411
+230	val_230	230
+208	val_208	208
+348	val_348	348
+24	val_24	24
+463	val_463	463
+431	val_431	431
+179	val_179	179
+172	val_172	172
+42	val_42	42
+129	val_129	129
+158	val_158	158
+119	val_119	119
+496	val_496	496
+0	val_0	0
+322	val_322	322
+197	val_197	197
+468	val_468	468
+393	val_393	393
+454	val_454	454
+100	val_100	100
+298	val_298	298
+199	val_199	199
+191	val_191	191
+418	val_418	418
+96	val_96	96
+26	val_26	26
+165	val_165	165
+327	val_327	327
+230	val_230	230
+205	val_205	205
+120	val_120	120
+131	val_131	131
+51	val_51	51
+404	val_404	404
+43	val_43	43
+436	val_436	436
+156	val_156	156
+469	val_469	469
+468	val_468	468
+308	val_308	308
+95	val_95	95
+196	val_196	196
+288	val_288	288
+481	val_481	481
+457	val_457	457
+98	val_98	98
+282	val_282	282
+197	val_197	197
+187	val_187	187
+318	val_318	318
+318	val_318	318
+409	val_409	409
+470	val_470	470
+137	val_137	137
+369	val_369	369
+316	val_316	316
+169	val_169	169
+413	val_413	413
+85	val_85	85
+77	val_77	77
+0	val_0	0
+490	val_490	490
+87	val_87	87
+364	val_364	364
+179	val_179	179
+118	val_118	118
+134	val_134	134
+395	val_395	395
+282	val_282	282
+138	val_138	138
+238	val_238	238
+419	val_419	419
+15	val_15	15
+118	val_118	118
+72	val_72	72
+90	val_90	90
+307	val_307	307
+19	val_19	19
+435	val_435	435
+10	val_10	10
+277	val_277	277
+273	val_273	273
+306	val_306	306
+224	val_224	224
+309	val_309	309
+389	val_389	389
+327	val_327	327
+242	val_242	242
+369	val_369	369
+392	val_392	392
+272	val_272	272
+331	val_331	331
+401	val_401	401
+242	val_242	242
+452	val_452	452
+177	val_177	177
+226	val_226	226
+5	val_5	5
+497	val_497	497
+402	val_402	402
+396	val_396	396
+317	val_317	317
+395	val_395	395
+58	val_58	58
+35	val_35	35
+336	val_336	336
+95	val_95	95
+11	val_11	11
+168	val_168	168
+34	val_34	34
+229	val_229	229
+233	val_233	233
+143	val_143	143
+472	val_472	472
+322	val_322	322
+498	val_498	498
+160	val_160	160
+195	val_195	195
+42	val_42	42
+321	val_321	321
+430	val_430	430
+119	val_119	119
+489	val_489	489
+458	val_458	458
+78	val_78	78
+76	val_76	76
+41	val_41	41
+223	val_223	223
+492	val_492	492
+149	val_149	149
+449	val_449	449
+218	val_218	218
+228	val_228	228
+138	val_138	138
+453	val_453	453
+30	val_30	30
+209	val_209	209
+64	val_64	64
+468	val_468	468
+76	val_76	76
+74	val_74	74
+342	val_342	342
+69	val_69	69
+230	val_230	230
+33	val_33	33
+368	val_368	368
+103	val_103	103
+296	val_296	296
+113	val_113	113
+216	val_216	216
+367	val_367	367
+344	val_344	344
+167	val_167	167
+274	val_274	274
+219	val_219	219
+239	val_239	239
+485	val_485	485
+116	val_116	116
+223	val_223	223
+256	val_256	256
+263	val_263	263
+70	val_70	70
+487	val_487	487
+480	val_480	480
+401	val_401	401
+288	val_288	288
+191	val_191	191
+5	val_5	5
+244	val_244	244
+438	val_438	438
+128	val_128	128
+467	val_467	467
+432	val_432	432
+202	val_202	202
+316	val_316	316
+229	val_229	229
+469	val_469	469
+463	val_463	463
+280	val_280	280
+2	val_2	2
+35	val_35	35
+283	val_283	283
+331	val_331	331
+235	val_235	235
+80	val_80	80
+44	val_44	44
+193	val_193	193
+321	val_321	321
+335	val_335	335
+104	val_104	104
+466	val_466	466
+366	val_366	366
+175	val_175	175
+403	val_403	403
+483	val_483	483
+53	val_53	53
+105	val_105	105
+257	val_257	257
+406	val_406	406
+409	val_409	409
+190	val_190	190
+406	val_406	406
+401	val_401	401
+114	val_114	114
+258	val_258	258
+90	val_90	90
+203	val_203	203
+262	val_262	262
+348	val_348	348
+424	val_424	424
+12	val_12	12
+396	val_396	396
+201	val_201	201
+217	val_217	217
+164	val_164	164
+431	val_431	431
+454	val_454	454
+478	val_478	478
+298	val_298	298
+125	val_125	125
+431	val_431	431
+164	val_164	164
+424	val_424	424
+187	val_187	187
+382	val_382	382
+5	val_5	5
+70	val_70	70
+397	val_397	397
+480	val_480	480
+291	val_291	291
+24	val_24	24
+351	val_351	351
+255	val_255	255
+104	val_104	104
+70	val_70	70
+163	val_163	163
+438	val_438	438
+119	val_119	119
+414	val_414	414
+200	val_200	200
+491	val_491	491
+237	val_237	237
+439	val_439	439
+360	val_360	360
+248	val_248	248
+479	val_479	479
+305	val_305	305
+417	val_417	417
+199	val_199	199
+444	val_444	444
+120	val_120	120
+429	val_429	429
+169	val_169	169
+443	val_443	443
+323	val_323	323
+325	val_325	325
+277	val_277	277
+230	val_230	230
+478	val_478	478
+178	val_178	178
+468	val_468	468
+310	val_310	310
+317	val_317	317
+333	val_333	333
+493	val_493	493
+460	val_460	460
+207	val_207	207
+249	val_249	249
+265	val_265	265
+480	val_480	480
+83	val_83	83
+136	val_136	136
+353	val_353	353
+172	val_172	172
+214	val_214	214
+462	val_462	462
+233	val_233	233
+406	val_406	406
+133	val_133	133
+175	val_175	175
+189	val_189	189
+454	val_454	454
+375	val_375	375
+401	val_401	401
+421	val_421	421
+407	val_407	407
+384	val_384	384
+256	val_256	256
+26	val_26	26
+134	val_134	134
+67	val_67	67
+384	val_384	384
+379	val_379	379
+18	val_18	18
+462	val_462	462
+492	val_492	492
+100	val_100	100
+298	val_298	298
+9	val_9	9
+341	val_341	341
+498	val_498	498
+146	val_146	146
+458	val_458	458
+362	val_362	362
+186	val_186	186
+285	val_285	285
+348	val_348	348
+167	val_167	167
+18	val_18	18
+273	val_273	273
+183	val_183	183
+281	val_281	281
+344	val_344	344
+97	val_97	97
+469	val_469	469
+315	val_315	315
+84	val_84	84
+28	val_28	28
+37	val_37	37
+448	val_448	448
+152	val_152	152
+348	val_348	348
+307	val_307	307
+194	val_194	194
+414	val_414	414
+477	val_477	477
+222	val_222	222
+126	val_126	126
+90	val_90	90
+169	val_169	169
+403	val_403	403
+400	val_400	400
+200	val_200	200
+97	val_97	97
+PREHOOK: query: drop table partition_vs_table
+PREHOOK: type: DROPTABLE
+POSTHOOK: query: drop table partition_vs_table
+POSTHOOK: type: DROPTABLE
+POSTHOOK: Output: default@partition_vs_table

Modified: hadoop/hive/trunk/ql/src/test/results/compiler/plan/case_sensitivity.q.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/ql/src/test/results/compiler/plan/case_sensitivity.q.xml?rev=885676&r1=885675&r2=885676&view=diff
==============================================================================
--- hadoop/hive/trunk/ql/src/test/results/compiler/plan/case_sensitivity.q.xml (original)
+++ hadoop/hive/trunk/ql/src/test/results/compiler/plan/case_sensitivity.q.xml Tue Dec  1 06:24:53 2009
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?> 
-<java version="1.6.0_15" class="java.beans.XMLDecoder"> 
+<java version="1.6.0_07" class="java.beans.XMLDecoder"> 
  <object id="MapRedTask0" class="org.apache.hadoop.hive.ql.exec.MapRedTask"> 
   <void property="childTasks"> 
    <object class="java.util.ArrayList"> 
@@ -30,7 +30,7 @@
                <boolean>true</boolean> 
               </void> 
               <void property="sourceDir"> 
-               <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/1653266080/10000</string> 
+               <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/2028344243/10000</string> 
               </void> 
               <void property="table"> 
                <object id="tableDesc0" class="org.apache.hadoop.hive.ql.plan.tableDesc"> 
@@ -83,11 +83,11 @@
                   </void> 
                   <void method="put"> 
                    <string>location</string> 
-                   <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/dest1</string> 
+                   <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/dest1</string> 
                   </void> 
                   <void method="put"> 
                    <string>transient_lastDdlTime</string> 
-                   <string>1258002415</string> 
+                   <string>1259648273</string> 
                   </void> 
                  </object> 
                 </void> 
@@ -97,7 +97,7 @@
                </object> 
               </void> 
               <void property="tmpDir"> 
-               <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/1653266080/10001</string> 
+               <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/2028344243/10001</string> 
               </void> 
              </object> 
             </void> 
@@ -125,10 +125,10 @@
                <boolean>true</boolean> 
               </void> 
               <void property="sourceDir"> 
-               <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/883374601/10002</string> 
+               <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/925350182/10002</string> 
               </void> 
               <void property="targetDir"> 
-               <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/1653266080/10000</string> 
+               <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/2028344243/10000</string> 
               </void> 
              </object> 
             </void> 
@@ -146,7 +146,7 @@
             <void property="aliasToWork"> 
              <object class="java.util.LinkedHashMap"> 
               <void method="put"> 
-               <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/883374601/10002</string> 
+               <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/925350182/10002</string> 
                <object id="TableScanOperator0" class="org.apache.hadoop.hive.ql.exec.TableScanOperator"> 
                 <void property="childOperators"> 
                  <object class="java.util.ArrayList"> 
@@ -385,10 +385,10 @@
             <void property="pathToAliases"> 
              <object class="java.util.LinkedHashMap"> 
               <void method="put"> 
-               <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/883374601/10002</string> 
+               <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/925350182/10002</string> 
                <object class="java.util.ArrayList"> 
                 <void method="add"> 
-                 <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/883374601/10002</string> 
+                 <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/925350182/10002</string> 
                 </void> 
                </object> 
               </void> 
@@ -397,7 +397,7 @@
             <void property="pathToPartitionInfo"> 
              <object class="java.util.LinkedHashMap"> 
               <void method="put"> 
-               <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/883374601/10002</string> 
+               <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/925350182/10002</string> 
                <object class="org.apache.hadoop.hive.ql.plan.partitionDesc"> 
                 <void property="deserializerClass"> 
                  <class>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</class> 
@@ -430,7 +430,7 @@
                   <void property="conf"> 
                    <object class="org.apache.hadoop.hive.ql.plan.fileSinkDesc"> 
                     <void property="dirName"> 
-                     <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/1653266080/10000</string> 
+                     <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/2028344243/10000</string> 
                     </void> 
                     <void property="tableInfo"> 
                      <object class="org.apache.hadoop.hive.ql.plan.tableDesc"> 
@@ -479,7 +479,7 @@
                         </void> 
                         <void method="put"> 
                          <string>location</string> 
-                         <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/dest1</string> 
+                         <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/dest1</string> 
                         </void> 
                         <void method="put"> 
                          <string>file.outputformat</string> 
@@ -487,7 +487,7 @@
                         </void> 
                         <void method="put"> 
                          <string>transient_lastDdlTime</string> 
-                         <string>1258002415</string> 
+                         <string>1259648273</string> 
                         </void> 
                        </object> 
                       </void> 
@@ -621,7 +621,7 @@
       <void property="resolverCtx"> 
        <object class="org.apache.hadoop.hive.ql.plan.ConditionalResolverMergeFiles$ConditionalResolverMergeFilesCtx"> 
         <void property="dir"> 
-         <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/883374601/10002</string> 
+         <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/925350182/10002</string> 
         </void> 
         <void property="listTasks"> 
          <object idref="ArrayList0"/> 
@@ -711,7 +711,11 @@
          </void> 
          <void method="put"> 
           <string>location</string> 
-          <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src_thrift</string> 
+          <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src_thrift</string> 
+         </void> 
+         <void method="put"> 
+          <string>transient_lastDdlTime</string> 
+          <string>1259648272</string> 
          </void> 
         </object> 
        </void> 
@@ -730,56 +734,7 @@
           <class>org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat</class> 
          </void> 
          <void property="properties"> 
-          <object id="Properties2" class="java.util.Properties"> 
-           <void method="put"> 
-            <string>name</string> 
-            <string>src_thrift</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns.types</string> 
-            <string></string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.ddl</string> 
-            <string>struct src_thrift { }</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns</string> 
-            <string></string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.format</string> 
-            <string>org.apache.thrift.protocol.TBinaryProtocol</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.class</string> 
-            <string>org.apache.hadoop.hive.serde2.thrift.test.Complex</string> 
-           </void> 
-           <void method="put"> 
-            <string>bucket_count</string> 
-            <string>-1</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.lib</string> 
-            <string>org.apache.hadoop.hive.serde2.thrift.ThriftDeserializer</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.inputformat</string> 
-            <string>org.apache.hadoop.mapred.SequenceFileInputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.outputformat</string> 
-            <string>org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>location</string> 
-            <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src_thrift</string> 
-           </void> 
-           <void method="put"> 
-            <string>transient_lastDdlTime</string> 
-            <string>1258002414</string> 
-           </void> 
-          </object> 
+          <object idref="Properties1"/> 
          </void> 
          <void property="serdeClassName"> 
           <string>org.apache.hadoop.hive.serde2.thrift.ThriftDeserializer</string> 
@@ -816,7 +771,7 @@
                            <int>1</int> 
                           </void> 
                           <void property="dirName"> 
-                           <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/883374601/10002</string> 
+                           <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/925350182/10002</string> 
                           </void> 
                           <void property="tableInfo"> 
                            <object idref="tableDesc0"/> 
@@ -1374,7 +1329,7 @@
     <void property="pathToAliases"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src_thrift</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src_thrift</string> 
        <object class="java.util.ArrayList"> 
         <void method="add"> 
          <string>src_thrift</string> 
@@ -1386,7 +1341,7 @@
     <void property="pathToPartitionInfo"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src_thrift</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src_thrift</string> 
        <object class="org.apache.hadoop.hive.ql.plan.partitionDesc"> 
         <void property="deserializerClass"> 
          <class>org.apache.hadoop.hive.serde2.thrift.ThriftDeserializer</class> 
@@ -1418,7 +1373,7 @@
            <class>org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat</class> 
           </void> 
           <void property="properties"> 
-           <object idref="Properties2"/> 
+           <object idref="Properties1"/> 
           </void> 
           <void property="serdeClassName"> 
            <string>org.apache.hadoop.hive.serde2.thrift.ThriftDeserializer</string> 

Modified: hadoop/hive/trunk/ql/src/test/results/compiler/plan/cast1.q.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/ql/src/test/results/compiler/plan/cast1.q.xml?rev=885676&r1=885675&r2=885676&view=diff
==============================================================================
--- hadoop/hive/trunk/ql/src/test/results/compiler/plan/cast1.q.xml (original)
+++ hadoop/hive/trunk/ql/src/test/results/compiler/plan/cast1.q.xml Tue Dec  1 06:24:53 2009
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?> 
-<java version="1.6.0_15" class="java.beans.XMLDecoder"> 
+<java version="1.6.0_07" class="java.beans.XMLDecoder"> 
  <object class="org.apache.hadoop.hive.ql.exec.MapRedTask"> 
   <void property="id"> 
    <string>Stage-2</string> 
@@ -62,7 +62,11 @@
          </void> 
          <void method="put"> 
           <string>location</string> 
-          <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+          <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
+         </void> 
+         <void method="put"> 
+          <string>transient_lastDdlTime</string> 
+          <string>1259648276</string> 
          </void> 
         </object> 
        </void> 
@@ -81,52 +85,7 @@
           <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
          </void> 
          <void property="properties"> 
-          <object id="Properties1" class="java.util.Properties"> 
-           <void method="put"> 
-            <string>name</string> 
-            <string>src</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns.types</string> 
-            <string>string:string</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.ddl</string> 
-            <string>struct src { string key, string value}</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.format</string> 
-            <string>1</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns</string> 
-            <string>key,value</string> 
-           </void> 
-           <void method="put"> 
-            <string>bucket_count</string> 
-            <string>-1</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.lib</string> 
-            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.inputformat</string> 
-            <string>org.apache.hadoop.mapred.TextInputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.outputformat</string> 
-            <string>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>location</string> 
-            <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
-           </void> 
-           <void method="put"> 
-            <string>transient_lastDdlTime</string> 
-            <string>1258002417</string> 
-           </void> 
-          </object> 
+          <object idref="Properties0"/> 
          </void> 
          <void property="serdeClassName"> 
           <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -160,7 +119,7 @@
                         <void property="conf"> 
                          <object class="org.apache.hadoop.hive.ql.plan.fileSinkDesc"> 
                           <void property="dirName"> 
-                           <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/614535407/10001</string> 
+                           <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/859934066/10001</string> 
                           </void> 
                           <void property="tableInfo"> 
                            <object class="org.apache.hadoop.hive.ql.plan.tableDesc"> 
@@ -1043,7 +1002,7 @@
     <void property="pathToAliases"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="java.util.ArrayList"> 
         <void method="add"> 
          <string>src</string> 
@@ -1055,7 +1014,7 @@
     <void property="pathToPartitionInfo"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="org.apache.hadoop.hive.ql.plan.partitionDesc"> 
         <void property="deserializerClass"> 
          <class>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</class> 
@@ -1087,7 +1046,7 @@
            <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
           </void> 
           <void property="properties"> 
-           <object idref="Properties1"/> 
+           <object idref="Properties0"/> 
           </void> 
           <void property="serdeClassName"> 
            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 

Modified: hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby1.q.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby1.q.xml?rev=885676&r1=885675&r2=885676&view=diff
==============================================================================
--- hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby1.q.xml (original)
+++ hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby1.q.xml Tue Dec  1 06:24:53 2009
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?> 
-<java version="1.6.0_15" class="java.beans.XMLDecoder"> 
+<java version="1.6.0_07" class="java.beans.XMLDecoder"> 
  <object id="MapRedTask0" class="org.apache.hadoop.hive.ql.exec.MapRedTask"> 
   <void property="childTasks"> 
    <object class="java.util.ArrayList"> 
@@ -26,7 +26,7 @@
            <boolean>true</boolean> 
           </void> 
           <void property="sourceDir"> 
-           <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/1385396079/10000</string> 
+           <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/1773953046/10000</string> 
           </void> 
           <void property="table"> 
            <object id="tableDesc0" class="org.apache.hadoop.hive.ql.plan.tableDesc"> 
@@ -79,11 +79,11 @@
               </void> 
               <void method="put"> 
                <string>location</string> 
-               <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/dest1</string> 
+               <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/dest1</string> 
               </void> 
               <void method="put"> 
                <string>transient_lastDdlTime</string> 
-               <string>1258002420</string> 
+               <string>1259648280</string> 
               </void> 
              </object> 
             </void> 
@@ -93,7 +93,7 @@
            </object> 
           </void> 
           <void property="tmpDir"> 
-           <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/1385396079/10001</string> 
+           <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/1773953046/10001</string> 
           </void> 
          </object> 
         </void> 
@@ -164,7 +164,11 @@
          </void> 
          <void method="put"> 
           <string>location</string> 
-          <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+          <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
+         </void> 
+         <void method="put"> 
+          <string>transient_lastDdlTime</string> 
+          <string>1259648280</string> 
          </void> 
         </object> 
        </void> 
@@ -183,52 +187,7 @@
           <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
          </void> 
          <void property="properties"> 
-          <object id="Properties1" class="java.util.Properties"> 
-           <void method="put"> 
-            <string>name</string> 
-            <string>src</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns.types</string> 
-            <string>string:string</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.ddl</string> 
-            <string>struct src { string key, string value}</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.format</string> 
-            <string>1</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns</string> 
-            <string>key,value</string> 
-           </void> 
-           <void method="put"> 
-            <string>bucket_count</string> 
-            <string>-1</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.lib</string> 
-            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.inputformat</string> 
-            <string>org.apache.hadoop.mapred.TextInputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.outputformat</string> 
-            <string>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>location</string> 
-            <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
-           </void> 
-           <void method="put"> 
-            <string>transient_lastDdlTime</string> 
-            <string>1258002420</string> 
-           </void> 
-          </object> 
+          <object idref="Properties0"/> 
          </void> 
          <void property="serdeClassName"> 
           <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -770,7 +729,7 @@
     <void property="pathToAliases"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="java.util.ArrayList"> 
         <void method="add"> 
          <string>src</string> 
@@ -782,7 +741,7 @@
     <void property="pathToPartitionInfo"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="org.apache.hadoop.hive.ql.plan.partitionDesc"> 
         <void property="deserializerClass"> 
          <class>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</class> 
@@ -814,7 +773,7 @@
            <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
           </void> 
           <void property="properties"> 
-           <object idref="Properties1"/> 
+           <object idref="Properties0"/> 
           </void> 
           <void property="serdeClassName"> 
            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -841,7 +800,7 @@
                  <int>1</int> 
                 </void> 
                 <void property="dirName"> 
-                 <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/1385396079/10000</string> 
+                 <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/1773953046/10000</string> 
                 </void> 
                 <void property="tableInfo"> 
                  <object idref="tableDesc0"/> 

Modified: hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby2.q.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby2.q.xml?rev=885676&r1=885675&r2=885676&view=diff
==============================================================================
--- hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby2.q.xml (original)
+++ hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby2.q.xml Tue Dec  1 06:24:53 2009
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?> 
-<java version="1.6.0_15" class="java.beans.XMLDecoder"> 
+<java version="1.6.0_07" class="java.beans.XMLDecoder"> 
  <object class="org.apache.hadoop.hive.ql.exec.MapRedTask"> 
   <void property="id"> 
    <string>Stage-2</string> 
@@ -62,7 +62,11 @@
          </void> 
          <void method="put"> 
           <string>location</string> 
-          <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+          <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
+         </void> 
+         <void method="put"> 
+          <string>transient_lastDdlTime</string> 
+          <string>1259648283</string> 
          </void> 
         </object> 
        </void> 
@@ -81,52 +85,7 @@
           <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
          </void> 
          <void property="properties"> 
-          <object id="Properties1" class="java.util.Properties"> 
-           <void method="put"> 
-            <string>name</string> 
-            <string>src</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns.types</string> 
-            <string>string:string</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.ddl</string> 
-            <string>struct src { string key, string value}</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.format</string> 
-            <string>1</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns</string> 
-            <string>key,value</string> 
-           </void> 
-           <void method="put"> 
-            <string>bucket_count</string> 
-            <string>-1</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.lib</string> 
-            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.inputformat</string> 
-            <string>org.apache.hadoop.mapred.TextInputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.outputformat</string> 
-            <string>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>location</string> 
-            <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
-           </void> 
-           <void method="put"> 
-            <string>transient_lastDdlTime</string> 
-            <string>1258002422</string> 
-           </void> 
-          </object> 
+          <object idref="Properties0"/> 
          </void> 
          <void property="serdeClassName"> 
           <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -911,7 +870,7 @@
     <void property="pathToAliases"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="java.util.ArrayList"> 
         <void method="add"> 
          <string>src</string> 
@@ -923,7 +882,7 @@
     <void property="pathToPartitionInfo"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="org.apache.hadoop.hive.ql.plan.partitionDesc"> 
         <void property="deserializerClass"> 
          <class>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</class> 
@@ -955,7 +914,7 @@
            <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
           </void> 
           <void property="properties"> 
-           <object idref="Properties1"/> 
+           <object idref="Properties0"/> 
           </void> 
           <void property="serdeClassName"> 
            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -979,7 +938,7 @@
               <void property="conf"> 
                <object class="org.apache.hadoop.hive.ql.plan.fileSinkDesc"> 
                 <void property="dirName"> 
-                 <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/1835687384/10001</string> 
+                 <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/2058936823/10001</string> 
                 </void> 
                 <void property="tableInfo"> 
                  <object class="org.apache.hadoop.hive.ql.plan.tableDesc"> 

Modified: hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby3.q.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby3.q.xml?rev=885676&r1=885675&r2=885676&view=diff
==============================================================================
--- hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby3.q.xml (original)
+++ hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby3.q.xml Tue Dec  1 06:24:53 2009
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?> 
-<java version="1.6.0_15" class="java.beans.XMLDecoder"> 
+<java version="1.6.0_07" class="java.beans.XMLDecoder"> 
  <object class="org.apache.hadoop.hive.ql.exec.MapRedTask"> 
   <void property="id"> 
    <string>Stage-2</string> 
@@ -62,7 +62,11 @@
          </void> 
          <void method="put"> 
           <string>location</string> 
-          <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+          <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
+         </void> 
+         <void method="put"> 
+          <string>transient_lastDdlTime</string> 
+          <string>1259648285</string> 
          </void> 
         </object> 
        </void> 
@@ -81,52 +85,7 @@
           <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
          </void> 
          <void property="properties"> 
-          <object id="Properties1" class="java.util.Properties"> 
-           <void method="put"> 
-            <string>name</string> 
-            <string>src</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns.types</string> 
-            <string>string:string</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.ddl</string> 
-            <string>struct src { string key, string value}</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.format</string> 
-            <string>1</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns</string> 
-            <string>key,value</string> 
-           </void> 
-           <void method="put"> 
-            <string>bucket_count</string> 
-            <string>-1</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.lib</string> 
-            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.inputformat</string> 
-            <string>org.apache.hadoop.mapred.TextInputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.outputformat</string> 
-            <string>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>location</string> 
-            <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
-           </void> 
-           <void method="put"> 
-            <string>transient_lastDdlTime</string> 
-            <string>1258002424</string> 
-           </void> 
-          </object> 
+          <object idref="Properties0"/> 
          </void> 
          <void property="serdeClassName"> 
           <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -1095,7 +1054,7 @@
     <void property="pathToAliases"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="java.util.ArrayList"> 
         <void method="add"> 
          <string>src</string> 
@@ -1107,7 +1066,7 @@
     <void property="pathToPartitionInfo"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="org.apache.hadoop.hive.ql.plan.partitionDesc"> 
         <void property="deserializerClass"> 
          <class>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</class> 
@@ -1139,7 +1098,7 @@
            <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
           </void> 
           <void property="properties"> 
-           <object idref="Properties1"/> 
+           <object idref="Properties0"/> 
           </void> 
           <void property="serdeClassName"> 
            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -1163,7 +1122,7 @@
               <void property="conf"> 
                <object class="org.apache.hadoop.hive.ql.plan.fileSinkDesc"> 
                 <void property="dirName"> 
-                 <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/360752189/10001</string> 
+                 <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/1909842924/10001</string> 
                 </void> 
                 <void property="tableInfo"> 
                  <object class="org.apache.hadoop.hive.ql.plan.tableDesc"> 

Modified: hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby4.q.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby4.q.xml?rev=885676&r1=885675&r2=885676&view=diff
==============================================================================
--- hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby4.q.xml (original)
+++ hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby4.q.xml Tue Dec  1 06:24:53 2009
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?> 
-<java version="1.6.0_15" class="java.beans.XMLDecoder"> 
+<java version="1.6.0_07" class="java.beans.XMLDecoder"> 
  <object class="org.apache.hadoop.hive.ql.exec.MapRedTask"> 
   <void property="id"> 
    <string>Stage-2</string> 
@@ -62,7 +62,11 @@
          </void> 
          <void method="put"> 
           <string>location</string> 
-          <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+          <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
+         </void> 
+         <void method="put"> 
+          <string>transient_lastDdlTime</string> 
+          <string>1259648288</string> 
          </void> 
         </object> 
        </void> 
@@ -81,52 +85,7 @@
           <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
          </void> 
          <void property="properties"> 
-          <object id="Properties1" class="java.util.Properties"> 
-           <void method="put"> 
-            <string>name</string> 
-            <string>src</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns.types</string> 
-            <string>string:string</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.ddl</string> 
-            <string>struct src { string key, string value}</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.format</string> 
-            <string>1</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns</string> 
-            <string>key,value</string> 
-           </void> 
-           <void method="put"> 
-            <string>bucket_count</string> 
-            <string>-1</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.lib</string> 
-            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.inputformat</string> 
-            <string>org.apache.hadoop.mapred.TextInputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.outputformat</string> 
-            <string>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>location</string> 
-            <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
-           </void> 
-           <void method="put"> 
-            <string>transient_lastDdlTime</string> 
-            <string>1258002426</string> 
-           </void> 
-          </object> 
+          <object idref="Properties0"/> 
          </void> 
          <void property="serdeClassName"> 
           <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -585,7 +544,7 @@
     <void property="pathToAliases"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="java.util.ArrayList"> 
         <void method="add"> 
          <string>src</string> 
@@ -597,7 +556,7 @@
     <void property="pathToPartitionInfo"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="org.apache.hadoop.hive.ql.plan.partitionDesc"> 
         <void property="deserializerClass"> 
          <class>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</class> 
@@ -629,7 +588,7 @@
            <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
           </void> 
           <void property="properties"> 
-           <object idref="Properties1"/> 
+           <object idref="Properties0"/> 
           </void> 
           <void property="serdeClassName"> 
            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -653,7 +612,7 @@
               <void property="conf"> 
                <object class="org.apache.hadoop.hive.ql.plan.fileSinkDesc"> 
                 <void property="dirName"> 
-                 <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/1457721520/10001</string> 
+                 <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/514428882/10001</string> 
                 </void> 
                 <void property="tableInfo"> 
                  <object class="org.apache.hadoop.hive.ql.plan.tableDesc"> 

Modified: hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby5.q.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby5.q.xml?rev=885676&r1=885675&r2=885676&view=diff
==============================================================================
--- hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby5.q.xml (original)
+++ hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby5.q.xml Tue Dec  1 06:24:53 2009
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?> 
-<java version="1.6.0_15" class="java.beans.XMLDecoder"> 
+<java version="1.6.0_07" class="java.beans.XMLDecoder"> 
  <object class="org.apache.hadoop.hive.ql.exec.MapRedTask"> 
   <void property="id"> 
    <string>Stage-2</string> 
@@ -62,7 +62,11 @@
          </void> 
          <void method="put"> 
           <string>location</string> 
-          <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+          <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
+         </void> 
+         <void method="put"> 
+          <string>transient_lastDdlTime</string> 
+          <string>1259648290</string> 
          </void> 
         </object> 
        </void> 
@@ -81,52 +85,7 @@
           <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
          </void> 
          <void property="properties"> 
-          <object id="Properties1" class="java.util.Properties"> 
-           <void method="put"> 
-            <string>name</string> 
-            <string>src</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns.types</string> 
-            <string>string:string</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.ddl</string> 
-            <string>struct src { string key, string value}</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.format</string> 
-            <string>1</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns</string> 
-            <string>key,value</string> 
-           </void> 
-           <void method="put"> 
-            <string>bucket_count</string> 
-            <string>-1</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.lib</string> 
-            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.inputformat</string> 
-            <string>org.apache.hadoop.mapred.TextInputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.outputformat</string> 
-            <string>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>location</string> 
-            <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
-           </void> 
-           <void method="put"> 
-            <string>transient_lastDdlTime</string> 
-            <string>1258002428</string> 
-           </void> 
-          </object> 
+          <object idref="Properties0"/> 
          </void> 
          <void property="serdeClassName"> 
           <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -668,7 +627,7 @@
     <void property="pathToAliases"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="java.util.ArrayList"> 
         <void method="add"> 
          <string>src</string> 
@@ -680,7 +639,7 @@
     <void property="pathToPartitionInfo"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="org.apache.hadoop.hive.ql.plan.partitionDesc"> 
         <void property="deserializerClass"> 
          <class>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</class> 
@@ -712,7 +671,7 @@
            <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
           </void> 
           <void property="properties"> 
-           <object idref="Properties1"/> 
+           <object idref="Properties0"/> 
           </void> 
           <void property="serdeClassName"> 
            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -736,7 +695,7 @@
               <void property="conf"> 
                <object class="org.apache.hadoop.hive.ql.plan.fileSinkDesc"> 
                 <void property="dirName"> 
-                 <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/1686373132/10001</string> 
+                 <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/1620104231/10001</string> 
                 </void> 
                 <void property="tableInfo"> 
                  <object class="org.apache.hadoop.hive.ql.plan.tableDesc"> 

Modified: hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby6.q.xml
URL: http://svn.apache.org/viewvc/hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby6.q.xml?rev=885676&r1=885675&r2=885676&view=diff
==============================================================================
--- hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby6.q.xml (original)
+++ hadoop/hive/trunk/ql/src/test/results/compiler/plan/groupby6.q.xml Tue Dec  1 06:24:53 2009
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?> 
-<java version="1.6.0_15" class="java.beans.XMLDecoder"> 
+<java version="1.6.0_07" class="java.beans.XMLDecoder"> 
  <object class="org.apache.hadoop.hive.ql.exec.MapRedTask"> 
   <void property="id"> 
    <string>Stage-2</string> 
@@ -62,7 +62,11 @@
          </void> 
          <void method="put"> 
           <string>location</string> 
-          <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+          <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
+         </void> 
+         <void method="put"> 
+          <string>transient_lastDdlTime</string> 
+          <string>1259648292</string> 
          </void> 
         </object> 
        </void> 
@@ -81,52 +85,7 @@
           <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
          </void> 
          <void property="properties"> 
-          <object id="Properties1" class="java.util.Properties"> 
-           <void method="put"> 
-            <string>name</string> 
-            <string>src</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns.types</string> 
-            <string>string:string</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.ddl</string> 
-            <string>struct src { string key, string value}</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.format</string> 
-            <string>1</string> 
-           </void> 
-           <void method="put"> 
-            <string>columns</string> 
-            <string>key,value</string> 
-           </void> 
-           <void method="put"> 
-            <string>bucket_count</string> 
-            <string>-1</string> 
-           </void> 
-           <void method="put"> 
-            <string>serialization.lib</string> 
-            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.inputformat</string> 
-            <string>org.apache.hadoop.mapred.TextInputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>file.outputformat</string> 
-            <string>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</string> 
-           </void> 
-           <void method="put"> 
-            <string>location</string> 
-            <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
-           </void> 
-           <void method="put"> 
-            <string>transient_lastDdlTime</string> 
-            <string>1258002431</string> 
-           </void> 
-          </object> 
+          <object idref="Properties0"/> 
          </void> 
          <void property="serdeClassName"> 
           <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -585,7 +544,7 @@
     <void property="pathToAliases"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="java.util.ArrayList"> 
         <void method="add"> 
          <string>src</string> 
@@ -597,7 +556,7 @@
     <void property="pathToPartitionInfo"> 
      <object class="java.util.LinkedHashMap"> 
       <void method="put"> 
-       <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/test/data/warehouse/src</string> 
+       <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/test/data/warehouse/src</string> 
        <object class="org.apache.hadoop.hive.ql.plan.partitionDesc"> 
         <void property="deserializerClass"> 
          <class>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</class> 
@@ -629,7 +588,7 @@
            <class>org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat</class> 
           </void> 
           <void property="properties"> 
-           <object idref="Properties1"/> 
+           <object idref="Properties0"/> 
           </void> 
           <void property="serdeClassName"> 
            <string>org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe</string> 
@@ -653,7 +612,7 @@
               <void property="conf"> 
                <object class="org.apache.hadoop.hive.ql.plan.fileSinkDesc"> 
                 <void property="dirName"> 
-                 <string>file:/Users/heyongqiang/Documents/workspace/Hive-Test/build/ql/tmp/859337910/10001</string> 
+                 <string>file:/data/users/njain/hive_commit1/hive_commit1/build/ql/tmp/585707865/10001</string> 
                 </void> 
                 <void property="tableInfo"> 
                  <object class="org.apache.hadoop.hive.ql.plan.tableDesc">