On Thu, Jul 4, 2013 at 4:22 PM, Michael Paquier
<michael(dot)paquier(at)gmail(dot)com>wrote:
> On Fri, Jul 5, 2013 at 6:10 AM, Joe Van Dyk <joe(at)tanga(dot)com> wrote:
> > Hi,
> >
> > Is refreshing a materialized view in 9.3 basically:
> >
> > delete from mat_view;
> > insert into mat_view select * from base_view;
> Nope. Here is some documentation:
> http://www.postgresql.org/docs/devel/static/rules-materializedviews.html
>
>
I meant for how postgres handles the refresh behind the scenes, not how the
user actually does a refresh.