catalog files simplification - Mailing list pgsql-hackers

From Peter Eisentraut
Subject catalog files simplification
Date
Msg-id b6ba8bc1-7c7d-3939-62bd-f99aeac5179d@2ndquadrant.com
Whole thread Raw
Responses Re: catalog files simplification
List 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

Attachment

pgsql-hackers by date:

Previous
From: Konstantin Knizhnik
Date:
Subject: Re: Adaptive query optimization
Next
From: Amit Khandekar
Date:
Subject: Re: Minimal logical decoding on standbys