Hello, when I read a CSV file with a schema object, if a column in the original CSV contains a value of a different datatype than specified in the schema, the result is a null cell. Is there an efficient way to identify these cases without having to read the CSV file twiceโfirst with the inferSchema option set to FALSE (reading all columns as strings) and then again with a schema objectโfollowed by comparing the count of nulls for each column?
Thank you