When using Auto Loader to ingest JSON files from a cloud location with the following configuration: ```spark.readStream.format("cloudFiles") \ .schema(schema) \ .option("cloudFiles.format", "json") \ .option("cloudFiles.schemaEvolutionMode", "addNewColumns") \ .load(source) ``` What happens if a file with an added column arrives at the source location? | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz