I have data that looks like this:
1,Anna,London
2,Peter,Amsterdam
I want to load this data as dataframe into hive and I want to add surrounding quotes so that the data in the dataframe looks like this:
"1" "Anna" "London"
"2" "Peter" "Amsterdam"
I have set the delimiter to ",". I know that there is quote-function but it does the opposite. How can I ADD the quotes?