Having a very frustrating time trying trying to get spark not to split my column when it has a \ in the column value.
what do I need to adjust to do this. Not getting it
thank you :)
datapath = "abfss:/location"
df = (spark
.read
.option("header","true")
.option("inferSchema","true")
.option("quote","\"")
.option("escape","'")
.option("sep",",")
.csv(datapath))
df.display()