This is a dedicated watch page for a single video.
A data engineer is using Databricks Delta Live Tables (DLT) to define a view of recent orders. The engineer has written the following Python code to create the view: @dlt . view def recent_orders (): return spark . read . table ( "orders" ). filter ( "year > 2025" ) Based on this implementation, what type of object will be created when this code is executed?