create table movie_showtimes_with_current_and_sold_out_with_dirty_and_expiry as
select *
       false as dirty,
       movie_showtimes_refresh_row(id) as expiry
  from movie_showtimes_with_current_and_sold_out_unmaterialized;
