Re: cataloguing NOT NULL constraints

Поиск
Список
Период
Сортировка
От Andres Freund
Тема Re: cataloguing NOT NULL constraints
Дата
Msg-id 20230407204530.52q3v5cu5x6dj676@awork3.anarazel.de
обсуждение исходный текст
Ответ на Re: cataloguing NOT NULL constraints  (Andres Freund <andres@anarazel.de>)
Ответы Re: cataloguing NOT NULL constraints
Список pgsql-hackers
Hi,

On 2023-04-07 13:38:43 -0700, Andres Freund wrote:
> I suspect there's a naming conflict between tests in different groups.

Yep:

test: create_aggregate create_function_sql create_cast constraints triggers select inherit typed_table vacuum
drop_if_existsupdatable_views roleattributes create_am hash_func errors infinite_recurse
 

src/test/regress/sql/inherit.sql
851:create table child(f1 int not null, f2 text not null) inherits(inh_parent_1, inh_parent_2);

src/test/regress/sql/triggers.sql
2127:create table child partition of parent for values in ('AAA');
2266:create table child () inherits (parent);
2759:create table child () inherits (parent);

The inherit.sql part is new.

I'll see how hard it is to fix.

Greetings,

Andres Freund



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

Предыдущее
От: Andres Freund
Дата:
Сообщение: Re: cataloguing NOT NULL constraints
Следующее
От: "Drouvot, Bertrand"
Дата:
Сообщение: Re: Minimal logical decoding on standbys