pgsql: Make concurrent refresh check early that there is a unique index

Поиск
Список
Период
Сортировка
От Fujii Masao
Тема pgsql: Make concurrent refresh check early that there is a unique index
Дата
Msg-id E1aVMlX-0000Or-B1@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Make concurrent refresh check early that there is a unique index on matview.

In REFRESH MATERIALIZED VIEW command, CONCURRENTLY option is only
allowed if there is at least one unique index with no WHERE clause on
one or more columns of the matview. Previously, concurrent refresh
checked the existence of a unique index on the matview after filling
the data to new snapshot, i.e., after calling refresh_matview_datafill().
So, when there was no unique index, we could need to wait a long time
before we detected that and got the error. It was a waste of time.

To eliminate such wasting time, this commit changes concurrent refresh
so that it checks the existence of a unique index at the beginning of
the refresh operation, i.e., before starting any time-consuming jobs.
If CONCURRENTLY option is not allowed due to lack of a unique index,
concurrent refresh can immediately detect it and emit an error.

Author: Masahiko Sawada
Reviewed-by: Michael Paquier, Fujii Masao

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/31b6606c48edf7c008ffe91907c080404a8c8046

Modified Files
--------------
src/backend/commands/matview.c | 59 +++++++++++++++++++++++++++++++++++++-----
1 file changed, 53 insertions(+), 6 deletions(-)


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

Предыдущее
От: Magnus Hagander
Дата:
Сообщение: pgsql: Fix typo
Следующее
От: Joe Conway
Дата:
Сообщение: pgsql: Correct Copyright year from 2015 to 2016