I have a BigQuery table with streaming data. The table is being populated using a Dataflow job. Recently I updated my Dataflow pipeline by removing Column_B of the two columns shown below:
| Column_A | Column_B |
|----------|-----------|
| Anna | Chicago |
| John | Houston |
But now my updated table contains the same number of columns as before, but with new data intended for Column_B replaced with null. Here´s an example of my updated pipeline:
| Column_A | Column_B |
|----------|-----------|
| Anna | Chicago |
| John | Houston |
| Michael | null |
| Cecilia | null |
| Ronald | null |
My table is partitioned on timestamp. I am wondering if there´s a way to completely drop Column_B and looking for suggestions regarding how to (if I should) do that. Also, how would that impact my table.
Thanks in advance.