pg_restore can't re-mat mat view that uses a function which depends on another mat view

Поиск
Список
Период
Сортировка
От Wells Oliver
Тема pg_restore can't re-mat mat view that uses a function which depends on another mat view
Дата
Msg-id CAOC+FBU-2gHrbP+7QOWAbjTFP6=RGjckY7rTj80f=Rh9=+r67A@mail.gmail.com
обсуждение исходный текст
Ответы Re: pg_restore can't re-mat mat view that uses a function which depends on another mat view  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-admin
Odd one here, but after restoring a database in parallel, I notice a few mat views are unmaterialized, e.g.

pg_restore: from TOC entry 21012; 0 1060827831 MATERIALIZED VIEW DATA vmwm_ytd_p postgres
pg_restore: error: could not execute query: ERROR:  materialized view "vwm_info" has not been populated
HINT:  Use the REFRESH MATERIALIZED VIEW command.
CONTEXT:  SQL function "age" statement 1
Command was: REFRESH MATERIALIZED VIEW stats.vwm_ytd_p;

The reason being is that vwm_ytd_p uses a function age() which queries from vwm_info, which has not yet been materialized. In fact, it is being materialized in parallel in another job, so not yet available.

Anything to do here? Weird sequence of dependencies, and I'm guessing pg_restore can't quite keep track of it since the dependency is buried in a function call.

Not a dreadful situation if I have to re-mat some views after the restore, but curious if I can do something different.

--

В списке pgsql-admin по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: pg_restore: warning: invalid creation date in header
Следующее
От: pramod kg
Дата:
Сообщение: Re: PostgreSQL SSL params