I have file in my local HDFS and it it is delimited by ':::'.
However when i am using the following command
A = load '/user/vishal/WordCount/hw3data/c0001' using PigStorage(':::') as (a, b, c);
it gives me the following error----
ERROR 1200: could not instantiate 'PigStorage' with arguments '[:::]'
What exactly could be the issue?
Thanks