Skip to content
Snippets Groups Projects
  1. Nov 22, 2005
  2. Nov 19, 2005
  3. Nov 17, 2005
    • Tom Lane's avatar
      Make SQL arrays support null elements. This commit fixes the core array · cecb6075
      Tom Lane authored
      functionality, but I still need to make another pass looking at places
      that incidentally use arrays (such as ACL manipulation) to make sure they
      are null-safe.  Contrib needs work too.
      I have not changed the behaviors that are still under discussion about
      array comparison and what to do with lower bounds.
      cecb6075
  4. Nov 14, 2005
  5. Nov 07, 2005
  6. Oct 15, 2005
  7. Oct 03, 2005
  8. Sep 27, 2005
  9. Sep 25, 2005
  10. May 25, 2005
  11. Jan 27, 2005
  12. Oct 21, 2004
  13. Aug 29, 2004
  14. Aug 20, 2004
    • Bruce Momjian's avatar
      > Please find enclose a submission to fix these problems. · ee85595d
      Bruce Momjian authored
      >
      > The patch adds missing the "libpgport.a" file to the installation under
      > "install-all-headers". It is needed by some contribs. I install the
      > library in "pkglibdir", but I was wondering whether it should be "libdir"?
      > I was wondering also whether it would make sense to have a "libpgport.so"?
      >
      > It fixes various macros which are used by contrib makefiles, especially
      > libpq_*dir and LDFLAGS when used under PGXS. It seems to me that they are
      > needed to
      >
      > It adds the ability to test and use PGXS with contribs, with "make
      > USE_PGXS=1". Without the macro, this is exactly as before, there should be
      > no difference, esp. wrt the vpath feature that seemed broken by previous
      > submission. So it should not harm anybody, and it is useful at least to me.
      >
      > It fixes some inconsistencies in various contrib makefiles
      > (useless override, ":=" instead of "=").
      
      Fabien COELHO
      ee85595d
  15. Mar 30, 2004
  16. Jan 09, 2004
  17. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  18. Aug 04, 2003
  19. Aug 01, 2003
  20. Jul 24, 2003
  21. Jun 11, 2003
    • Tom Lane's avatar
      Update expected file to match new _int.sql. · 6a276b7b
      Tom Lane authored
      6a276b7b
    • Bruce Momjian's avatar
      Add missing intarray files. · a237dd2b
      Bruce Momjian authored
      a237dd2b
    • Bruce Momjian's avatar
      Changes: · 47d5c3d5
      Bruce Momjian authored
      1 intarray: bugfix for int[]-int[] operation
      2 intarray: split _int.c to several files (_int.c now is unused)
      3 ntarray (gist__intbig_ops opclass): use special type for index storage
      4 ltree (gist__ltree_ops opclass), intarray (gist__intbig_ops): optimize
      GiST's
      penalty and picksplit interface functions, now use Hemming distance.
      
      Teodor Sigaev
      47d5c3d5
  22. May 27, 2003
  23. May 16, 2003
  24. May 14, 2003
  25. Mar 10, 2003
  26. Dec 27, 2002
  27. Nov 13, 2002
  28. Nov 11, 2002
  29. Nov 10, 2002
  30. Nov 01, 2002
  31. Oct 21, 2002
  32. Oct 18, 2002
  33. Oct 03, 2002
  34. Sep 14, 2002
  35. Sep 12, 2002
  36. Sep 04, 2002
  37. Sep 02, 2002
    • Bruce Momjian's avatar
      I checked all the previous string handling errors and most of them were · a12b4e27
      Bruce Momjian authored
      already fixed by You. However there were a few left and attached patch
      should fix the rest of them.
      
      I used StringInfo only in 2 places and both of them are inside debug
      ifdefs. Only performance penalty will come from using strlen() like all
      the other code does.
      
      I also modified some of the already patched parts by changing
      snprintf(buf, 2 * BUFSIZE, ... style lines to
      snprintf(buf, sizeof(buf), ... where buf is an array.
      
      Jukka Holappa
      a12b4e27
Loading