Skip to content
Snippets Groups Projects
Select Git revision
  • benchmark-tools
  • postgres-lambda
  • master default
  • REL9_4_25
  • REL9_5_20
  • REL9_6_16
  • REL_10_11
  • REL_11_6
  • REL_12_1
  • REL_12_0
  • REL_12_RC1
  • REL_12_BETA4
  • REL9_4_24
  • REL9_5_19
  • REL9_6_15
  • REL_10_10
  • REL_11_5
  • REL_12_BETA3
  • REL9_4_23
  • REL9_5_18
  • REL9_6_14
  • REL_10_9
  • REL_11_4
23 results

print.c

  • Tom Lane's avatar
    9e3755ec
    Remove useless duplicate inclusions of system header files. · 9e3755ec
    Tom Lane authored
    c.h #includes a number of core libc header files, such as <stdio.h>.
    There's no point in re-including these after having read postgres.h,
    postgres_fe.h, or c.h; so remove code that did so.
    
    While at it, also fix some places that were ignoring our standard pattern
    of "include postgres[_fe].h, then system header files, then other Postgres
    header files".  While there's not any great magic in doing it that way
    rather than system headers last, it's silly to have just a few files
    deviating from the general pattern.  (But I didn't attempt to enforce this
    globally, only in files I was touching anyway.)
    
    I'd be the first to say that this is mostly compulsive neatnik-ism,
    but over time it might save enough compile cycles to be useful.
    9e3755ec
    History
    Remove useless duplicate inclusions of system header files.
    Tom Lane authored
    c.h #includes a number of core libc header files, such as <stdio.h>.
    There's no point in re-including these after having read postgres.h,
    postgres_fe.h, or c.h; so remove code that did so.
    
    While at it, also fix some places that were ignoring our standard pattern
    of "include postgres[_fe].h, then system header files, then other Postgres
    header files".  While there's not any great magic in doing it that way
    rather than system headers last, it's silly to have just a few files
    deviating from the general pattern.  (But I didn't attempt to enforce this
    globally, only in files I was touching anyway.)
    
    I'd be the first to say that this is mostly compulsive neatnik-ism,
    but over time it might save enough compile cycles to be useful.