A data engineer has the following query in a Delta Live Tables pipeline: CREATE LIVE TABLE aggregated_sales AS SELECT store_id, sum(total) FROM cleaned_sales GROUP BY store_id The pipeline is failing to start due to an error in this query. Which of the following changes should be made to this query to successfully start the DLT pipeline?