Allows a mode for dealing with corrupt records during parsing.PERMISSIVE: When it meets a corrupted record, puts the malformed string into a field configured by Column Name Of Corrupt Record, and sets malformed fields to null. To keep corrupt records, an user can set a string type field named Column Name Of Corrupt Record in an user-defined schema. If a schema does not have the field, it drops corrupt records during parsing. When inferring a schema, it implicitly adds a Column Name Of Corrupt Record field in an output schema.DROPMALFORMED: Ignores the whole corrupted records.FAILFAST: Throws an exception when it meets corrupted records.Default: PERMISSIVE