parametere substitution truncates value if it has special character like "."
----------------------------------------------------------------------------
Key: PIG-668
URL: https://issues.apache.org/jira/browse/PIG-668
Project: Pig
Issue Type: Bug
Reporter: Olga Natkovich
Input script:
a = load '/user/pig/tests/data/singlefile/studenttab10k' as (name, age,gpa);
b = order a by name;
c = limit b 10;
store into '$out';
command: pig -param out=a.txt -dryrun test_param.pig
substituted script:
a = load '/user/pig/tests/data/singlefile/studenttab10k' as (name, age,gpa);
b = order a by name;
c = limit b 10;
store into 'a';
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.