As part of my project, I have a CSV file which has comma separated values. But there are few fields which are in quotes. As a result the data is not loaded correctly. For example: if the data is ==>> car, deer, "bear, cat"
In the above example, ideally there should be 3 columns. But its being treated as 4 columns due to the presence of a comma between rat and mat. The field "rat,mat" is not clubbed and considered as a single field.
Please suggest if there is something in PIG to handle such scenarios