I have a Dataflow SQL job that joins a streaming PubSub with a BigQuery table and writes the result to a BigQuery table. When I a add a new record (new sales_region) to my table 'us_state_salesregions' the new sales_region is NOT visible in the result table.
Only after creating a new Dataflow Job the newly added sales_region is visible in the result table of the query.
SELECT tr.*, sr.sales_region
FROM pubsub.topic.`project-id`.transactions as tr
INNER JOIN bigquery.table.`project-id`.dataflow_sql_dataset.us_state_salesregions AS sr
ON tr.state = sr.state_code
What should I do to get the newly added sales_region in the result of the query (without starting a new Dataflow Job)?