Given the following query: ```spark.table(“stream_sink“) .filter(“recent = true“) .dropDuplicates([“item_id“, “item_timestamp“]) .write .mode (“overwrite“) .table(“stream_data_stage“) ``` Which statement accurately describes the outcome of executing this query? | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz