Description
This is similar with https://issues.apache.org/jira/browse/SPARK-16434
CSVRelation.csvParser does type dispatch for each value in each row.
We can prevent this because the schema is already kept in CSVRelation.
So, converters can be created first according to the schema, and then apply them to each.