To ensure the `mobiles` table contains only unique entries for auditing purposes, which modification should be made to the following streaming query? ```spark.readStream.format('delta') .option('readChangeFeed', 'true') .table('customers') .select('mobile') .writeStream .format('delta') .option('checkpointLocation', '/tmp/customers/_checkpoints/') .table('mobiles')``` | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz