Consider the following Structured Streaming query in Databricks: ```python spark.readStream .table("orders") .writeStream .option("checkpointLocation", checkpointPath) .table("Output_Table") ``` What is the trigger interval for this query? | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz