A data engineer is using the following code block as part of a batch ingestion pipeline to read from a composable table: ```python transactions_df = (spark.read .schema(schema) .format("delta") .table("transactions")) ``` Which of the following changes needs to be made so this code block will work when the transactions table is a stream source? | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz