When executing the following query on a Delta table named 'customers' with Change Data Feed enabled, what describes the outcome each time the query is run? ```spark.read .option("readChangeFeed", "true") .option("startingVersion", 0) .table("customers") .filter(col("_change_type").isin(["update_postimage"])) .write .mode("overwrite") .table("customers_updates") ``` | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz