| Schema Change Type | Behaviour |
|---|---|
Adding a new column (ALTER TABLE ADD COLUMN ...) | Propagated automatically, all rows after the change will have all columns filled |
Adding a new column with a default value (ALTER TABLE ADD COLUMN ... DEFAULT ...) | Propagated automatically, all rows after the change will have all columns filled but existing rows will not show the DEFAULT value without a full table refresh |
Dropping an existing column (ALTER TABLE DROP COLUMN ...) | Detected, but not propagated. All rows after the change will have NULL for the dropped columns |

