Re: Adding custom constraints on a postgres database

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Adding custom constraints on a postgres database
Дата
Msg-id 2720842.1709231725@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Adding custom constraints on a postgres database  ("David G. Johnston" <david.g.johnston@gmail.com>)
Список pgsql-admin
"David G. Johnston" <david.g.johnston@gmail.com> writes:
> On Thu, Feb 29, 2024, 11:10 Debraj Manna <subharaj.manna@gmail.com> wrote:
>> Can someone let me know if there is a way I can add some custom
>> rules/constraints on a Postgres database?
>> 
>> For example, all tables in a database should have a primary key specified.
>> If someone is trying to violate the rules specified then the SQL command
>> should fail.

> https://www.postgresql.org/docs/current/event-trigger-definition.html

When/where are you expecting to enforce this?  If you prohibit the
common pattern of CREATE TABLE followed sometime later by ALTER TABLE
ADD PRIMARY KEY, you will soon regret that.

I think you might be better served by writing a lint-like thing
that can be run periodically to look through the system catalogs
for policy violations.  Rejecting SQL commands on-the-fly will be
expensive, as well as painful to work with.

            regards, tom lane



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

Предыдущее
От: "David G. Johnston"
Дата:
Сообщение: Re: Adding custom constraints on a postgres database
Следующее
От: Domen Šetar
Дата:
Сообщение: Logical replication from standby