Given the following query on the Delta databricks video

 ·  PT1H46M27S  ·  EN

data-engineer-professional video for given the following query on the Delta table ‘customers’ on which Change Data Feed is enabled: spark . readStream . option

Full Certification Question

Given the following query on the Delta table ‘customers’ on which Change Data Feed is enabled: spark . readStream . option ( "readChangeFeed" , "true" ) . option ( "startingVersion" , 0 ) . table ( "customers" ) . filter ( col ( "_change_type" ). isin ([ "update_postimage" ])) . writeStream . option ( "checkpointLocation" , "dbfs:/checkpoints" ) . trigger ( availableNow = True ) . table ( "customers_updates" ) Which statement describes the results of this query each time it is executed ?