"Activite.code is not a valid field name" when comparing two Dataframes using assertEquals.
val from = csvToDf("from.csv")
val to = csvToDf("to.csv")
from.assertEquals(to)`
Because Key from io.univalence.strings doesn't accept "." (line 312). Maybe a preprocessing step to change Activite.code into Activitecode before comparing schemas in spark-test for every "." and also for every unknow character that are not elligible by the regex expression `^[a-zA-Z][a-zA-Z0-9_]*$`?
"Activite.code is not a valid field name" when comparing two Dataframes using assertEquals.
Because Key from io.univalence.strings doesn't accept "." (line 312). Maybe a preprocessing step to change Activite.code into Activitecode before comparing schemas in spark-test for every "." and also for every unknow character that are not elligible by the regex expression `^[a-zA-Z][a-zA-Z0-9_]*$`?