1. 20 Jul, 2008 2 commits
  2. 19 Jul, 2008 1 commit
    • Tom Lane's avatar
      Avoid substituting NAMEDATALEN, FLOAT4PASSBYVAL, and FLOAT8PASSBYVAL into · 4b362c66
      Tom Lane authored
      the postgres.bki file during build, because we want that file to be entirely
      platform- and configuration-independent; else it can't safely be put into
      /usr/share on multiarch machines.  We can do the substitution during initdb,
      instead.  FLOAT4PASSBYVAL and FLOAT8PASSBYVAL are new breakage as of 8.4,
      while the NAMEDATALEN hazard has been there all along but I guess no one
      tripped over it.  Noticed while trying to build "universal" OS X binaries.
      4b362c66
  3. 18 Jul, 2008 8 commits
  4. 17 Jul, 2008 4 commits
  5. 16 Jul, 2008 7 commits
  6. 15 Jul, 2008 8 commits
  7. 14 Jul, 2008 9 commits
  8. 13 Jul, 2008 1 commit
    • Tom Lane's avatar
      Change the PageGetContents() macro to guarantee its result is maxalign'd, · 6816577a
      Tom Lane authored
      thereby forestalling any problems with alignment of the data structure placed
      there.  Since SizeOfPageHeaderData is maxalign'd anyway in 8.3 and HEAD, this
      does not actually change anything right now, but it is foreseeable that the
      header size will change again someday.  I had to fix a couple of places that
      were assuming that the content offset is just SizeOfPageHeaderData rather than
      MAXALIGN(SizeOfPageHeaderData).  Per discussion of Zdenek's page-macros patch.
      6816577a