I am trying to create a pig schema with 2B:chararray
as name of one column.
It is giving me an error message
2B:chararray Unexpected character ':'
If that is removed the schema is created. What is the problem here?
the schema is
load 'Batting.csv' using org.apache.pig.piggybank.storage.CSVExcelStorage(',','YES_MULTILINE','NOCHANGE','SKIP_INPUT_HEADER') as (yearID:int, sting:chararray, teamID:chararray, lgID:chararray, G:chararray, G_batting:chararray, AB:chararray, R:chararray, H:chararray, 2B:chararray);