Vivek Padmanabhan created PIG-2716:
--------------------------------------
Summary: Misleading error message
Key: PIG-2716
URL: https://issues.apache.org/jira/browse/PIG-2716
Project: Pig
Issue Type: Improvement
Components: parser
Affects Versions: 0.10.0, 0.9.2
Reporter: Vivek Padmanabhan
{code}
a = load myinput/1111/*.bz2 as (f:chararray);
b = foreach a generate INDEXOF(f,'#',0);
c = limit b 100;
dump c ;
{code}
The above script fails with the error message ;
2012-04-25 09:20:39,377 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR
1000: Error during parsing. Lexical error at line 5, column 0. Encountered:
<EOF> after : ""
But the actual problem is in the first line. This becomes tricky to find when
my script is large and there are multiple load statements.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira