Skip to content
Snippets Groups Projects
  1. Nov 07, 2005
  2. Oct 15, 2005
  3. Oct 03, 2005
  4. Sep 27, 2005
  5. Sep 25, 2005
  6. May 25, 2005
  7. Jan 27, 2005
  8. Oct 21, 2004
  9. Aug 29, 2004
  10. 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
  11. Mar 30, 2004
  12. Jan 09, 2004
  13. Nov 29, 2003
    • PostgreSQL Daemon's avatar
      · 969685ad
      PostgreSQL Daemon authored
      $Header: -> $PostgreSQL Changes ...
      969685ad
  14. Aug 04, 2003
  15. Aug 01, 2003
  16. Jul 24, 2003
  17. 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
  18. May 27, 2003
  19. May 16, 2003
  20. May 14, 2003
  21. Mar 10, 2003
  22. Dec 27, 2002
  23. Nov 13, 2002
  24. Nov 11, 2002
  25. Nov 10, 2002
  26. Nov 01, 2002
  27. Oct 21, 2002
  28. Oct 18, 2002
  29. Oct 03, 2002
  30. Sep 14, 2002
  31. Sep 12, 2002
  32. Sep 04, 2002
  33. 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
  34. Aug 23, 2002
  35. Aug 22, 2002
  36. Aug 10, 2002
    • Bruce Momjian's avatar
      August 6, 2002 · 181ca96e
      Bruce Momjian authored
         1. Reworked patch from Andrey Oktyabrski (ano@spider.ru) with
            functions: icount, sort, sort_asc, uniq, idx, subarray
            operations: #, +, -, |, &
      
      FUNCTIONS:
      
        int   icount(int[]) - the number of elements in intarray
        int[] sort(int[], 'asc' | 'desc') - sort intarray
        int[] sort(int[]) - sort in ascending order
        int[] sort_asc(int[]),sort_desc(int[]) - shortcuts for sort
        int[] uniq(int[]) - returns unique elements
        int   idx(int[], int item) - returns index of first intarray matching element
                                     to item, or '0' if matching failed.
        int[] subarray(int[],int START [, int LEN]) - returns part of intarray
                                     starting from element number START (from 1)
                                     and length LEN.
      OPERATIONS:
      
        int[] && int[]  - overlap - returns TRUE if arrays has at least one common elements.
        int[] @  int[]  - contains - returns TRUE if left array contains right array
        int[] ~ int[]   - contained - returns TRUE if left array is contained in right array
        # int[]         - return the number of elements in array
        int[] + int     - push element to array ( add to end of array)
        int[] + int[]   - merge of arrays (right array added to the end of left one)
        int[] - int     - remove entries matched by right argument from array
        int[] - int[]   - remove left array from right
        int[] | int     - returns intarray - union of arguments
        int[] | int[]   - returns intarray as a union of two arrays
        int[] & int[]   - returns intersection of arrays
      
      Oleg Bartunov
      181ca96e
  37. Jul 30, 2002
Loading