[
https://issues.apache.org/jira/browse/PIG-294?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12611248#action_12611248
]
Santhosh Srinivasan commented on PIG-294:
-----------------------------------------
Replacing the string comparators with numerical comparators resolves the issue.
split a into b if name lt 'f', c if (name ge 'f' and name le 'h'), d if name gt
'h'; --parse errors
split a into b if name lt 'f', c if (name >= 'f' and name <= 'h'), d if name gt
'h'; -- works
> Parse errors for boolean conditions
> -----------------------------------
>
> Key: PIG-294
> URL: https://issues.apache.org/jira/browse/PIG-294
> Project: Pig
> Issue Type: Bug
> Components: impl
> Affects Versions: types_branch
> Reporter: Santhosh Srinivasan
> Assignee: Santhosh Srinivasan
>
> The parser throws exceptions for pig statements that contain boolean
> conditions with operands that use string comparators. A sample statement to
> reproduce the test is given below:
> split a into b if name lt 'f', c if (name ge 'f' and name le 'h'), d if name
> gt 'h';
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.