1. 29 Jul, 2008 3 commits
  2. 26 Jul, 2008 1 commit
    • Tom Lane's avatar
      As noted by Andrew Gierth, there's really no need any more to force a junk · a77eaa6a
      Tom Lane authored
      filter to be used when INSERT or SELECT INTO has a plan that returns raw
      disk tuples.  The virtual-tuple-slot optimizations that were put in place
      awhile ago mean that ExecInsert has to do ExecMaterializeSlot, and that
      already copies the tuple if it's raw (and does so more efficiently than
      a junk filter, too).  So get rid of that logic.  This in turn means that
      we can throw away ExecMayReturnRawTuples, which wasn't used for any other
      purpose, and was always a kluge anyway.
      
      In passing, move a couple of SELECT-INTO-specific fields out of EState
      and into the private state of the SELECT INTO DestReceiver, as was foreseen
      in an old comment there.  Also make intorel_receive use ExecMaterializeSlot
      not ExecCopySlotTuple, for consistency with ExecInsert and to possibly save
      a tuple copy step in some cases.
      a77eaa6a
  3. 24 Jul, 2008 2 commits
  4. 23 Jul, 2008 3 commits
  5. 22 Jul, 2008 1 commit
  6. 21 Jul, 2008 3 commits
  7. 20 Jul, 2008 2 commits
  8. 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
  9. 18 Jul, 2008 8 commits
  10. 17 Jul, 2008 4 commits
  11. 16 Jul, 2008 7 commits
  12. 15 Jul, 2008 5 commits