I have a csv with the current structure:
- name, path, date
- aurora, Chicago, 20200130
- mark, "Syracuse, 2365", 2020131
The result table in Glue looks like:
- name, path, date
- aurora, Chicago, 20200130
- mark, Syracuse, 2365
I tried to build a classifier for CSV and add it to the Crawler but, as quotes are present only in some rows, it doesn't help Glue to find the right schema, that would be:
- name, path, date
- aurora | Chicago | 20200130
- mark | Syracuse, 2365 | 2020131
Any idea?