catalog files simplification

Поиск
Список
Период
Сортировка
От Peter Eisentraut
Тема catalog files simplification
Дата
Msg-id b6ba8bc1-7c7d-3939-62bd-f99aeac5179d@2ndquadrant.com
обсуждение исходный текст
Ответы Re: catalog files simplification  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-hackers
The current catalog files all do this:

    CATALOG(pg_aggregate,2600,AggregateRelationId)
    {
        ...
    } FormData_pg_aggregate;

    typedef FormData_pg_aggregate *Form_pg_aggregate;

The bottom part of this seems redundant.  With the attached patch, we
can generate that automatically, so this becomes just

    CATALOG(pg_aggregate,2600,AggregateRelationId)
    {
        ...
    };

-- 
Peter Eisentraut              http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

Вложения

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

Предыдущее
От: Konstantin Knizhnik
Дата:
Сообщение: Re: Adaptive query optimization
Следующее
От: Amit Khandekar
Дата:
Сообщение: Re: Minimal logical decoding on standbys