Skip to content
Snippets Groups Projects
  1. Jul 24, 2009
  2. Jul 16, 2009
    • Tom Lane's avatar
      Make GEQO's planning deterministic by having it start from a predictable · f5bc7419
      Tom Lane authored
      random number seed each time.  This is how it used to work years ago, but
      we got rid of the seed reset because it was resetting the main random()
      sequence and thus having undesirable effects on the rest of the system.
      To fix, establish a private random number state for each execution of
      geqo(), and initialize the state using the new GUC variable geqo_seed.
      People who want to experiment with different random searches can do so
      by changing geqo_seed, but you'll always get the same plan for the same
      value of geqo_seed (if holding all other planner inputs constant, of course).
      
      The new state is kept in PlannerInfo by adding a "void *" field reserved
      for use by join_search hooks.  Most of the rather bulky code changes in
      this commit are just arranging to pass PlannerInfo around to all the GEQO
      functions (many of which formerly didn't receive it).
      
      Andres Freund, with some editorialization by Tom
      f5bc7419
  3. Jan 01, 2009
  4. Jan 01, 2008
  5. Jan 05, 2007
  6. Mar 05, 2006
  7. Oct 15, 2005
  8. Jun 14, 2005
  9. Dec 31, 2004
    • PostgreSQL Daemon's avatar
      · 2ff50159
      PostgreSQL Daemon authored
      Tag appropriate files for rc3
      
      Also performed an initial run through of upgrading our Copyright date to
      extend to 2005 ... first run here was very simple ... change everything
      where: grep 1996-2004 && the word 'Copyright' ... scanned through the
      generated list with 'less' first, and after, to make sure that I only
      picked up the right entries ...
      2ff50159
  10. Aug 29, 2004
  11. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 55b11325
      PostgreSQL Daemon authored
      make sure the $Id tags are converted to $PostgreSQL as well ...
      55b11325
  12. Aug 04, 2003
  13. Sep 05, 2002
  14. Jun 20, 2002
  15. Jan 24, 2001
  16. Jan 26, 2000
    • Bruce Momjian's avatar
      Add: · 5c25d602
      Bruce Momjian authored
        * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
      
      to all files copyright Regents of Berkeley.  Man, that's a lot of files.
      5c25d602
  17. Jul 16, 1999
  18. Jul 15, 1999
  19. Feb 14, 1999
  20. Feb 03, 1999
  21. Sep 01, 1998
  22. Sep 08, 1997
  23. Sep 07, 1997
  24. Feb 19, 1997
Loading