Ultimate access to all questions.
A data engineer executes the following query in Databricks: 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')
. What happens to the streaming query if the schema of the company_info
table is altered by a data analyst?