Details
Description
test.pig
A = load 'input.txt' using org.apache.pig.piggybank.storage.CSVLoader() as (field1, field2);
dump A;
input.txt
a b, c,d ,e f
expected output by pig-0.11
(a,) (b,) (c,d) (,e) (f,)
incorrect output by trunk and probably from 0.12
(a) (b) (c,d) (,e) (f)
Attachments
Attachments
Issue Links
- is broken by
-
PIG-3123 Simplify Logical Plans By Removing Unneccessary Identity Projections
- Closed