1. 29 7月, 2005 1 次提交
  2. 02 7月, 2005 1 次提交
  3. 23 6月, 2005 2 次提交
  4. 12 3月, 2005 1 次提交
  5. 17 9月, 2004 1 次提交
  6. 29 8月, 2004 1 次提交
  7. 01 6月, 2004 1 次提交
  8. 21 5月, 2004 2 次提交
    • P
      · a551c3d0
      PostgreSQL Daemon 提交于
      attempt at a multi file commit, to seee how it formats
      a551c3d0
    • P
      · ee20fd46
      PostgreSQL Daemon 提交于
      just testing activitymail ... only added a space here so that the commit would
      pick it up
      ee20fd46
  9. 05 3月, 2004 1 次提交
  10. 14 9月, 2003 1 次提交
  11. 25 7月, 2003 1 次提交
  12. 21 3月, 2003 1 次提交
    • B
      I have updated my pg_autovacuum program (formerly pg_avd, the name · bd18c50b
      Bruce Momjian 提交于
      changed as per discussion on the patches list).
      
      This version should be a good bit better.  It addresses all the issues
      pointed out by Neil Conway. Vacuum and Analyze are now handled
      separately.  It now monitors for xid wraparound.  The number of database
      connections and queries has been significantly reduced compared the
      previous version.  I have moved it from bin to contrib.  More detail on
      the changes are in the TODO file.
      
      I have not tested the xid wraparound code as I have to let my AthlonXP
      1600 run select 1 in a tight loop for approx. two days in order to
      perform the required 500,000,000 xacts.
      
      Matthew T. O'Connor
      bd18c50b
  13. 21 10月, 2002 1 次提交
  14. 19 9月, 2002 1 次提交
  15. 02 9月, 2002 1 次提交
    • B
      Attached is a fairly sizeable update to contrib/dblink. I'd love to get · 7b8eb0b4
      Bruce Momjian 提交于
      review/feedback if anyone is interested and can spend the time. But I'd
      also love to get this committed and address changes as incremental
      patches ;-), so if there are no objections, please apply.
      
      Below I'll give a synopsis of the changes. More detailed descriptions
      are now in a new doc directory under contrib/dblink. There is also a new
      
      dblink.test.sql file which will give a pretty good overview of the
      functions and their use.
      
      Joe Conway
      7b8eb0b4
  16. 29 8月, 2002 1 次提交
  17. 17 8月, 2002 1 次提交
  18. 31 7月, 2002 2 次提交
    • B
    • B
      As mentioned above, here is my contrib/tablefunc patch. It includes · 41f862ba
      Bruce Momjian 提交于
      three functions which exercise the tablefunc API.
      
      show_all_settings()
         - returns the same information as SHOW ALL, but as a query result
      
      normal_rand(int numvals, float8 mean, float8 stddev, int seed)
         - returns a set of normally distributed float8 values
         - This routine implements Algorithm P (Polar method for normal
           deviates) from Knuth's _The_Art_of_Computer_Programming_, Volume 2,
           3rd ed., pages 122-126. Knuth cites his source as "The polar
           method", G. E. P. Box, M. E. Muller, and G. Marsaglia,
           _Annals_Math,_Stat._ 29 (1958), 610-611.
      
      crosstabN(text sql)
         - returns a set of row_name plus N category value columns
         - crosstab2(), crosstab3(), and crosstab4() are defined for you,
           but you can create additional crosstab functions per directions
           in the README.
      
      Joe Conway
      41f862ba
  19. 24 6月, 2002 1 次提交
  20. 23 6月, 2002 1 次提交
  21. 22 6月, 2002 1 次提交
  22. 25 2月, 2002 1 次提交
  23. 23 2月, 2002 1 次提交
  24. 22 2月, 2002 2 次提交
  25. 15 1月, 2002 1 次提交
  26. 31 12月, 2001 1 次提交
  27. 13 10月, 2001 1 次提交
  28. 01 10月, 2001 1 次提交
  29. 29 9月, 2001 1 次提交
    • B
      I noticed that the contrib Makefiles were reorganized. · cff23429
      Bruce Momjian 提交于
      Converted pgcrypto one too.
      
      * Changed default randomness source to libc random()
        That way pgcrypto does not have any external dependencies
        and should work everywhere.
      * Re-enabled pgcrypto build in contrib/makefile
      * contrib/README update - there is more stuff than
        only 'hash functions'
      * Noted the libc random fact in README.pgcrypto
      
      
      Marko Kreen
      cff23429
  30. 05 9月, 2001 1 次提交
  31. 23 8月, 2001 1 次提交
  32. 21 8月, 2001 1 次提交
  33. 08 8月, 2001 3 次提交
    • B
      Update README for fuzzystrmatch description. · 2cb95cd9
      Bruce Momjian 提交于
      2cb95cd9
    • B
      Sorry - I should have gotten to this sooner. Here's a patch which you should · cdd02cdf
      Bruce Momjian 提交于
      be able to apply against what you just committed. It rolls soundex into
      fuzzystrmatch.
      
      Remove soundex/metaphone and merge into fuzzystrmatch.
      
      Joe Conway
      cdd02cdf
    • B
      Per this discussion, here's a patch to implement both levenshtein() and · d8783c51
      Bruce Momjian 提交于
      metaphone() in a contrib. There seem to be a fair number of different
      approaches to both of these algorithms. I used the simplest case for
      levenshtein which has a cost  of 1 for any character insertion, deletion, or
      substitution. For metaphone, I adapted the same code from CPAN that the PHP
      folks did.
      
      A couple of questions:
      1. Does it make sense to fold the soundex contrib together with this one?
      
      2. I was debating trying to add multibyte support to levenshtein (it would
      make no sense at all for metaphone), but a quick search through the contrib
      directory found no hits on the word MULTIBYTE. Should worry about adding
      multibyte support to levenshtein()?
      
      Joe Conway
      d8783c51
  34. 30 7月, 2001 1 次提交