A data engineer is attempting to construct a Type 1 historical table by capturing all changes from a bronze Delta table where `delta.enableChangeDataFeed` is set to `true`. They implement the following PySpark code as a daily scheduled task: ```python from pyspark.sql.functions import col (spark.read.format("delta") .option("readChangeFeed", "true") .option("startingVersion", 0) .table("bronze") .filter(col("_change_type").isin(("update_postimage", "insert"))) .write.mode("append") .table("bronze_history") ) ``` How will repeatedly running this query impact the target table (`bronze_history`) over time? | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz