Re: set not null column using existing constraint

Поиск
Список
Период
Сортировка
От Rui DeSousa
Тема Re: set not null column using existing constraint
Дата
Msg-id 45C1CF20-054D-4AD2-8886-76F499A39285@icloud.com
обсуждение исходный текст
Ответ на set not null column using existing constraint  (Marco Piovan <mpiovan@workwave.com>)
Ответы Re: set not null column using existing constraint
Список pgsql-admin
Marco,

Since the column has already been altered to be not null then attaching the primary key will not need to rescan the table to mark the column as not null again — just use the “using index" clause.  

i.e.

alter table rui.member add primary key using index member_pkey;


On Jan 10, 2018, at 7:09 AM, Marco Piovan <mpiovan@workwave.com> wrote:

Hello,
I want to create a primary key using  an existing unique index.
I have already created the index concurrently and I have already validated a not null constraint on the same column.

Looking at the postgres documentation (https://www.postgresql.org/docs/9.6/static/sql-altertable.html):

"If PRIMARY KEY is specified, and the index's columns are not already marked NOT NULL, then this command will attempt to do ALTER COLUMN SET NOT NULL against each such column. That requires a full table scan to verify the column(s) contain no nulls. In all other cases, this is a fast operation."

Is it possible to specify the already validated not null constraint and avoid another scan of the table (with lock)?

Best regards

--
Marco Piovan

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

Предыдущее
От: Keith
Дата:
Сообщение: Re: set not null column using existing constraint
Следующее
От: Marco Piovan
Дата:
Сообщение: Re: set not null column using existing constraint