Hi,
Say I have a MATERIALIZED VIEW with AggregatingMergeTree engine, I'm able to ALTER the underlying table (as it's MergeTree), however I'm not able to alter MV itself
(change pkey or group by). Is there a way how to go around this without losing data? From documentation I understand that ALTER isn't implemented on MVs yet, which is fine. So I'm thinking something like:
1. detach the MV from the table
2. create new MV with new schema
3. insert from old MV into new one
4. delete the old MV
Would something like this be feasible?
Cheers,
Marek