Re: information_schema and not-null constraints
| От | Peter Eisentraut |
|---|---|
| Тема | Re: information_schema and not-null constraints |
| Дата | |
| Msg-id | 09489196-0bc1-e796-c43e-63425f7c5910@eisentraut.org обсуждение исходный текст |
| Ответ на | Re: information_schema and not-null constraints (Alvaro Herrera <alvherre@alvh.no-ip.org>) |
| Ответы |
Re: information_schema and not-null constraints
Re: information_schema and not-null constraints |
| Список | pgsql-hackers |
On 06.09.23 19:52, Alvaro Herrera wrote:
> + SELECT current_database()::information_schema.sql_identifier AS constraint_catalog,
> + rs.nspname::information_schema.sql_identifier AS constraint_schema,
> + con.conname::information_schema.sql_identifier AS constraint_name,
> + format('CHECK (%s IS NOT NULL)', at.attname)::information_schema.character_data AS check_clause
Small correction here: This should be
pg_catalog.format('%s IS NOT NULL', at.attname)::information_schema.character_data AS check_clause
That is, the word "CHECK" and the parentheses should not be part of the
produced value.
В списке pgsql-hackers по дате отправления: