Re: Question about materialized view

2017-06-26 Thread Michael Mior
This is handled by updateAffectsView in org.apache.cassandra.db.view.View. It will scan over each row to be updated in the base table and see that the column is not included in the view definition and skip the update. -- Michael Mior mm...@apache.org 2017-06-21 2:41 GMT-04:00 web master : > Assu

Question about materialized view

2017-06-20 Thread web master
Assume this schema CREATE TABLE t( a int, b int, c int, d int, e text, f date, g int, PRIMARY KEY (a,b) ) I we create following mv CREATE MATERIALIZED VIEW t_mv as select a,b,c,d from t where c is not null and d is not null