1. 17 Mar, 2008 5 commits
  2. 16 Mar, 2008 4 commits
  3. 15 Mar, 2008 1 commit
    • Tom Lane's avatar
      Change hash index creation so that rather than always establishing exactly · c9a1cc69
      Tom Lane authored
      two buckets at the start, we create a number of buckets appropriate for the
      estimated size of the table.  This avoids a lot of expensive bucket-split
      actions during initial index build on an already-populated table.
      
      This is one of the two core ideas of Tom Raney and Shreya Bhargava's patch
      to reduce hash index build time.  I'm committing it separately to make it
      easier for people to test the effects of this separately from the effects
      of their other core idea (pre-sorting the index entries by bucket number).
      c9a1cc69
  4. 14 Mar, 2008 3 commits
  5. 13 Mar, 2008 5 commits
  6. 12 Mar, 2008 20 commits
  7. 11 Mar, 2008 2 commits
    • Bruce Momjian's avatar
      Prevent psql \copy from accepting multiple string parameters, e.g. · def329d1
      Bruce Momjian authored
      	test=> \copy billing_data from ../BillingSamplePricerFile.csv with csv
      	   header quote as '"' null as 'abc' null as '123'
      	\copy: parse error at "null"
      
      Per report from Stephen Frost
      def329d1
    • Bruce Momjian's avatar
      Update TODO: · 288579ca
      Bruce Momjian authored
              o Allow COPY in CSV mode to control whether a quoted zero-length
                string is treated as NULL
      
                Currently this is always treated as a zero-length string,
                which generates an error when loading into an integer column
      288579ca