data-engineer-professional video for a data engineer runs the below query: spark . readStream . format ( 'delta' ) . table ( 'stock_prices' ) . join ( table
A data engineer runs the below query: spark . readStream . format ( 'delta' ) . table ( 'stock_prices' ) . join ( table ( 'company_info' ), how = 'left' , on = 'id' ) . writeStream . option ( 'checkpointLocation' , '/tmp/share_details' ) . format ( 'delta' ) . table ( 'shares' ) Which of the following statements is true about the result of the query if one of the data analysts changes the schema for the company_info table.