Hi David,
You have bumped into a limitation of the current version of Hive/Hcatalog, double quoted data is always interpreted as strings. The easiest workaround for this would be to strip the double quotes from the data files before loading it into hadoop. You could do this with a "sed -i ‘s/\"//g’ your-data-file".
I hope this helps,
Ted.
...
Hi David,
You have bumped into a limitation of the current version of Hive/Hcatalog, double quoted data is always interpreted as strings. The easiest workaround for this would be to strip the double quotes from the data files before loading it into hadoop. You could do this with a "sed -i ‘s/\"//g’ your-data-file".
I hope this helps,
Ted.