You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ha...@apache.org on 2013/10/21 17:07:00 UTC

svn commit: r1534203 - in /hive/trunk/ql/src: java/org/apache/hadoop/hive/ql/parse/ test/results/clientnegative/ test/results/compiler/errors/

Author: hashutosh
Date: Mon Oct 21 15:06:59 2013
New Revision: 1534203

URL: http://svn.apache.org/r1534203
Log:
HIVE-5574 : Unnecessary newline at the end of message of ParserException (Navis via Ashutosh Chauhan)

Modified:
    hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/parse/ParseException.java
    hive/trunk/ql/src/test/results/clientnegative/alter_partition_coltype_2columns.q.out
    hive/trunk/ql/src/test/results/clientnegative/alter_partition_coltype_invalidtype.q.out
    hive/trunk/ql/src/test/results/clientnegative/archive_partspec3.q.out
    hive/trunk/ql/src/test/results/clientnegative/clusterbyorderby.q.out
    hive/trunk/ql/src/test/results/clientnegative/column_rename3.q.out
    hive/trunk/ql/src/test/results/clientnegative/columnstats_partlvl_multiple_part_clause.q.out
    hive/trunk/ql/src/test/results/clientnegative/create_or_replace_view6.q.out
    hive/trunk/ql/src/test/results/clientnegative/invalid_create_tbl2.q.out
    hive/trunk/ql/src/test/results/clientnegative/invalid_select_expression.q.out
    hive/trunk/ql/src/test/results/clientnegative/invalid_tbl_name.q.out
    hive/trunk/ql/src/test/results/clientnegative/lateral_view_join.q.out
    hive/trunk/ql/src/test/results/clientnegative/ptf_negative_DistributeByOrderBy.q.out
    hive/trunk/ql/src/test/results/clientnegative/ptf_negative_PartitionBySortBy.q.out
    hive/trunk/ql/src/test/results/clientnegative/ptf_window_boundaries.q.out
    hive/trunk/ql/src/test/results/clientnegative/ptf_window_boundaries2.q.out
    hive/trunk/ql/src/test/results/clientnegative/select_charliteral.q.out
    hive/trunk/ql/src/test/results/clientnegative/select_udtf_alias.q.out
    hive/trunk/ql/src/test/results/clientnegative/set_table_property.q.out
    hive/trunk/ql/src/test/results/clientnegative/show_columns2.q.out
    hive/trunk/ql/src/test/results/clientnegative/show_tables_bad1.q.out
    hive/trunk/ql/src/test/results/clientnegative/show_tables_bad2.q.out
    hive/trunk/ql/src/test/results/clientnegative/uniquejoin3.q.out
    hive/trunk/ql/src/test/results/compiler/errors/garbage.q.out
    hive/trunk/ql/src/test/results/compiler/errors/invalid_create_table.q.out
    hive/trunk/ql/src/test/results/compiler/errors/invalid_select.q.out
    hive/trunk/ql/src/test/results/compiler/errors/macro_reserved_word.q.out
    hive/trunk/ql/src/test/results/compiler/errors/missing_overwrite.q.out
    hive/trunk/ql/src/test/results/compiler/errors/quoted_string.q.out
    hive/trunk/ql/src/test/results/compiler/errors/wrong_distinct2.q.out

Modified: hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/parse/ParseException.java
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/parse/ParseException.java?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/parse/ParseException.java (original)
+++ hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/parse/ParseException.java Mon Oct 21 15:06:59 2013
@@ -39,8 +39,10 @@ public class ParseException extends Exce
 
     StringBuilder sb = new StringBuilder();
     for (ParseError err : errors) {
+      if (sb.length() > 0) {
+        sb.append('\n');
+      }
       sb.append(err.getMessage());
-      sb.append("\n");
     }
 
     return sb.toString();

Modified: hive/trunk/ql/src/test/results/clientnegative/alter_partition_coltype_2columns.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/alter_partition_coltype_2columns.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/alter_partition_coltype_2columns.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/alter_partition_coltype_2columns.q.out Mon Oct 21 15:06:59 2013
@@ -34,4 +34,3 @@ ts                  	string             
 dt                  	string              	None                
 ts                  	string              	None                
 FAILED: ParseException line 4:50 mismatched input ',' expecting ) near 'int' in alter table partition statement
-

Modified: hive/trunk/ql/src/test/results/clientnegative/alter_partition_coltype_invalidtype.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/alter_partition_coltype_invalidtype.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/alter_partition_coltype_invalidtype.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/alter_partition_coltype_invalidtype.q.out Mon Oct 21 15:06:59 2013
@@ -34,4 +34,3 @@ ts                  	string             
 dt                  	string              	None                
 ts                  	string              	None                
 FAILED: ParseException line 4:47 cannot recognize input near 'time' ')' '<EOF>' in column type
-

Modified: hive/trunk/ql/src/test/results/clientnegative/archive_partspec3.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/archive_partspec3.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/archive_partspec3.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/archive_partspec3.q.out Mon Oct 21 15:06:59 2013
@@ -24,4 +24,3 @@ POSTHOOK: Output: default@srcpart_archiv
 POSTHOOK: Lineage: srcpart_archived PARTITION(ds=2008-04-08,hr=12).key SIMPLE [(srcpart)srcpart.FieldSchema(name:key, type:string, comment:default), ]
 POSTHOOK: Lineage: srcpart_archived PARTITION(ds=2008-04-08,hr=12).value SIMPLE [(srcpart)srcpart.FieldSchema(name:value, type:string, comment:default), ]
 FAILED: ParseException line 3:48 cannot recognize input near ')' '<EOF>' '<EOF>' in archive statement
-

Modified: hive/trunk/ql/src/test/results/clientnegative/clusterbyorderby.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/clusterbyorderby.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/clusterbyorderby.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/clusterbyorderby.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1 @@
 FAILED: ParseException line 5:0 missing EOF at 'ORDER' near 'tkey'
-

Modified: hive/trunk/ql/src/test/results/clientnegative/column_rename3.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/column_rename3.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/column_rename3.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/column_rename3.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1 @@
 FAILED: ParseException line 1:30 cannot recognize input near '<EOF>' '<EOF>' '<EOF>' in column type
-

Modified: hive/trunk/ql/src/test/results/clientnegative/columnstats_partlvl_multiple_part_clause.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/columnstats_partlvl_multiple_part_clause.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/columnstats_partlvl_multiple_part_clause.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/columnstats_partlvl_multiple_part_clause.q.out Mon Oct 21 15:06:59 2013
@@ -52,4 +52,3 @@ POSTHOOK: type: LOAD
 POSTHOOK: Output: default@employee_part
 POSTHOOK: Output: default@employee_part@employeesalary=3000.0/country=UK
 FAILED: ParseException line 5:79 mismatched input 'partition' expecting KW_COMPUTE near ')' in analyze statement
-

Modified: hive/trunk/ql/src/test/results/clientnegative/create_or_replace_view6.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/create_or_replace_view6.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/create_or_replace_view6.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/create_or_replace_view6.q.out Mon Oct 21 15:06:59 2013
@@ -12,4 +12,3 @@ POSTHOOK: query: create view v partition
 POSTHOOK: type: CREATEVIEW
 POSTHOOK: Output: default@v
 FAILED: ParseException line 2:52 cannot recognize input near 'blah' '<EOF>' '<EOF>' in select clause
-

Modified: hive/trunk/ql/src/test/results/clientnegative/invalid_create_tbl2.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/invalid_create_tbl2.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/invalid_create_tbl2.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/invalid_create_tbl2.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1 @@
 FAILED: ParseException line 1:7 cannot recognize input near 'create' 'tabl' 'tmp_zshao_22' in ddl statement
-

Modified: hive/trunk/ql/src/test/results/clientnegative/invalid_select_expression.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/invalid_select_expression.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/invalid_select_expression.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/invalid_select_expression.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1 @@
 FAILED: ParseException line 1:32 cannot recognize input near '.' 'foo' '<EOF>' in expression specification
-

Modified: hive/trunk/ql/src/test/results/clientnegative/invalid_tbl_name.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/invalid_tbl_name.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/invalid_tbl_name.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/invalid_tbl_name.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1 @@
 FAILED: ParseException line 1:20 cannot recognize input near 'invalid' '-' 'name' in table name
-

Modified: hive/trunk/ql/src/test/results/clientnegative/lateral_view_join.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/lateral_view_join.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/lateral_view_join.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/lateral_view_join.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1 @@
 FAILED: ParseException line 1:62 missing EOF at 'myTable' near 'AS'
-

Modified: hive/trunk/ql/src/test/results/clientnegative/ptf_negative_DistributeByOrderBy.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/ptf_negative_DistributeByOrderBy.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/ptf_negative_DistributeByOrderBy.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/ptf_negative_DistributeByOrderBy.q.out Mon Oct 21 15:06:59 2013
@@ -28,4 +28,3 @@ POSTHOOK: query: CREATE TABLE part( 
 POSTHOOK: type: CREATETABLE
 POSTHOOK: Output: default@part
 FAILED: ParseException line 5:46 missing ) at 'order' near 'p_mfgr' in table name
-

Modified: hive/trunk/ql/src/test/results/clientnegative/ptf_negative_PartitionBySortBy.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/ptf_negative_PartitionBySortBy.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/ptf_negative_PartitionBySortBy.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/ptf_negative_PartitionBySortBy.q.out Mon Oct 21 15:06:59 2013
@@ -28,4 +28,3 @@ POSTHOOK: query: CREATE TABLE part( 
 POSTHOOK: type: CREATETABLE
 POSTHOOK: Output: default@part
 FAILED: ParseException line 5:45 missing ) at 'sort' near 'p_mfgr' in table name
-

Modified: hive/trunk/ql/src/test/results/clientnegative/ptf_window_boundaries.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/ptf_window_boundaries.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/ptf_window_boundaries.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/ptf_window_boundaries.q.out Mon Oct 21 15:06:59 2013
@@ -26,4 +26,3 @@ CREATE TABLE part( 
 POSTHOOK: type: CREATETABLE
 POSTHOOK: Output: default@part
 FAILED: ParseException line 4:44 mismatched input 'following' expecting KW_PRECEDING near 'unbounded' in windowframestartboundary
-

Modified: hive/trunk/ql/src/test/results/clientnegative/ptf_window_boundaries2.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/ptf_window_boundaries2.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/ptf_window_boundaries2.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/ptf_window_boundaries2.q.out Mon Oct 21 15:06:59 2013
@@ -26,4 +26,3 @@ CREATE TABLE part( 
 POSTHOOK: type: CREATETABLE
 POSTHOOK: Output: default@part
 FAILED: ParseException line 4:45 mismatched input 'following' expecting KW_PRECEDING near 'unbounded' in windowframestartboundary
-

Modified: hive/trunk/ql/src/test/results/clientnegative/select_charliteral.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/select_charliteral.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/select_charliteral.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/select_charliteral.q.out Mon Oct 21 15:06:59 2013
@@ -1,3 +1,2 @@
 FAILED: ParseException line 3:11 missing \' at ',' near '_c17' in character string literal
 line 4:0 mismatched input '<EOF>' expecting \' near '_c17' in character string literal
-

Modified: hive/trunk/ql/src/test/results/clientnegative/select_udtf_alias.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/select_udtf_alias.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/select_udtf_alias.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/select_udtf_alias.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1 @@
 FAILED: ParseException line 3:49 missing FROM at 'LIMIT' near ')' in table name
-

Modified: hive/trunk/ql/src/test/results/clientnegative/set_table_property.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/set_table_property.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/set_table_property.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/set_table_property.q.out Mon Oct 21 15:06:59 2013
@@ -4,4 +4,3 @@ POSTHOOK: query: create table testTable(
 POSTHOOK: type: CREATETABLE
 POSTHOOK: Output: default@testTable
 FAILED: ParseException line 4:45 missing StringLiteral at ')' near '<EOF>'
-

Modified: hive/trunk/ql/src/test/results/clientnegative/show_columns2.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/show_columns2.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/show_columns2.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/show_columns2.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1 @@
 FAILED: ParseException line 1:29 extraneous input 'foo' expecting EOF near '<EOF>'
-

Modified: hive/trunk/ql/src/test/results/clientnegative/show_tables_bad1.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/show_tables_bad1.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/show_tables_bad1.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/show_tables_bad1.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1 @@
 FAILED: ParseException line 1:12 extraneous input 'JOIN' expecting EOF near '<EOF>'
-

Modified: hive/trunk/ql/src/test/results/clientnegative/show_tables_bad2.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/show_tables_bad2.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/show_tables_bad2.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/show_tables_bad2.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1 @@
 FAILED: ParseException line 1:32 extraneous input 'b' expecting EOF near '<EOF>'
-

Modified: hive/trunk/ql/src/test/results/clientnegative/uniquejoin3.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/clientnegative/uniquejoin3.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/clientnegative/uniquejoin3.q.out (original)
+++ hive/trunk/ql/src/test/results/clientnegative/uniquejoin3.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1 @@
 FAILED: ParseException line 1:54 required (...)+ loop did not match anything at input 'JOIN' in statement
-

Modified: hive/trunk/ql/src/test/results/compiler/errors/garbage.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/compiler/errors/garbage.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/compiler/errors/garbage.q.out (original)
+++ hive/trunk/ql/src/test/results/compiler/errors/garbage.q.out Mon Oct 21 15:06:59 2013
@@ -1 +1 @@
-Parse Error: line 1:0 cannot recognize input near 'this' 'is' 'totally'
+Parse Error: line 1:0 cannot recognize input near 'this' 'is' 'totally'
\ No newline at end of file

Modified: hive/trunk/ql/src/test/results/compiler/errors/invalid_create_table.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/compiler/errors/invalid_create_table.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/compiler/errors/invalid_create_table.q.out (original)
+++ hive/trunk/ql/src/test/results/compiler/errors/invalid_create_table.q.out Mon Oct 21 15:06:59 2013
@@ -1 +1 @@
-Parse Error: line 3:2 mismatched input 'b' expecting ) near 'INT' in create table statement
+Parse Error: line 3:2 mismatched input 'b' expecting ) near 'INT' in create table statement
\ No newline at end of file

Modified: hive/trunk/ql/src/test/results/compiler/errors/invalid_select.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/compiler/errors/invalid_select.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/compiler/errors/invalid_select.q.out (original)
+++ hive/trunk/ql/src/test/results/compiler/errors/invalid_select.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1,2 @@
 Parse Error: line 3:6 missing FROM at '(' near '(' in subquery source
-line 3:7 cannot recognize input near 'b' ')' 'FROM' in subquery source
+line 3:7 cannot recognize input near 'b' ')' 'FROM' in subquery source
\ No newline at end of file

Modified: hive/trunk/ql/src/test/results/compiler/errors/macro_reserved_word.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/compiler/errors/macro_reserved_word.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/compiler/errors/macro_reserved_word.q.out (original)
+++ hive/trunk/ql/src/test/results/compiler/errors/macro_reserved_word.q.out Mon Oct 21 15:06:59 2013
@@ -1 +1 @@
-Parse Error: line 1:23 mismatched input 'DOUBLE' expecting Identifier near 'MACRO' in create macro statement
+Parse Error: line 1:23 mismatched input 'DOUBLE' expecting Identifier near 'MACRO' in create macro statement
\ No newline at end of file

Modified: hive/trunk/ql/src/test/results/compiler/errors/missing_overwrite.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/compiler/errors/missing_overwrite.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/compiler/errors/missing_overwrite.q.out (original)
+++ hive/trunk/ql/src/test/results/compiler/errors/missing_overwrite.q.out Mon Oct 21 15:06:59 2013
@@ -1 +1 @@
-Parse Error: line 2:0 cannot recognize input near 'INSERT' 'TABLE' 'dest1' in insert clause
+Parse Error: line 2:0 cannot recognize input near 'INSERT' 'TABLE' 'dest1' in insert clause
\ No newline at end of file

Modified: hive/trunk/ql/src/test/results/compiler/errors/quoted_string.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/compiler/errors/quoted_string.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/compiler/errors/quoted_string.q.out (original)
+++ hive/trunk/ql/src/test/results/compiler/errors/quoted_string.q.out Mon Oct 21 15:06:59 2013
@@ -1,2 +1,2 @@
 Parse Error: line 3:0 character '<EOF>' not supported here
-line 3:0 character '<EOF>' not supported here
+line 3:0 character '<EOF>' not supported here
\ No newline at end of file

Modified: hive/trunk/ql/src/test/results/compiler/errors/wrong_distinct2.q.out
URL: http://svn.apache.org/viewvc/hive/trunk/ql/src/test/results/compiler/errors/wrong_distinct2.q.out?rev=1534203&r1=1534202&r2=1534203&view=diff
==============================================================================
--- hive/trunk/ql/src/test/results/compiler/errors/wrong_distinct2.q.out (original)
+++ hive/trunk/ql/src/test/results/compiler/errors/wrong_distinct2.q.out Mon Oct 21 15:06:59 2013
@@ -1 +1 @@
-Parse Error: line 2:45 cannot recognize input near 'DISTINCT' 'substr' '(' in select expression
+Parse Error: line 2:45 cannot recognize input near 'DISTINCT' 'substr' '(' in select expression
\ No newline at end of file