1. 10 Aug, 2001 1 commit
  2. 09 Aug, 2001 7 commits
  3. 08 Aug, 2001 1 commit
  4. 07 Aug, 2001 10 commits
  5. 06 Aug, 2001 11 commits
  6. 05 Aug, 2001 3 commits
  7. 04 Aug, 2001 7 commits
    • Bruce Momjian's avatar
      d1c96330
    • Bruce Momjian's avatar
      Compile fix for jdbc1. · eb610fb8
      Bruce Momjian authored
      eb610fb8
    • Bruce Momjian's avatar
      This patch is because Hurd does not support NOFILE. It is against current · 3e518682
      Bruce Momjian authored
      cvs.
      
      The Debian bug report says, "The upstream source makes use of NOFILE
      unconditionalized.  As the Hurd doesn't have an arbitrary limit on the
      number of open files, this is not defined.  But _SC_OPEN_MAX works fine
      and returns 1024 (applications can increase this as they want), so I
      suggest the below diff.  Please forward this upstream, too."
      
      Oliver Elphick
      3e518682
    • Bruce Momjian's avatar
      This patch adds the following to the FTI module: · e9ea1255
      Bruce Momjian authored
      * The ability to index more than one column in a table with a single
      trigger.
      * All uses of sprintf changed to snprintf to prevent users from crashing
      Postgres.
      * Error messages made more consistent
      * Some changes made to bring it into line with coding requirements for
      triggers specified in the docs.  (ie. check you're a trigger before casting
      your context)
      * The perl script that generate indices has been updated to support indexing
      multiple columns in a table.
      * Fairly well tested in our development environment indexing a food
      database's brand and description fields.  The size of the fti index is
      around 300,000 rows.
      * All docs and examples upgraded.  This includes specifying more efficient
      index usage that was specified before, better examples that don't produce
      duplicates, etc.
      
      
      Christopher Kings-Lynne & Brett
      e9ea1255
    • Bruce Momjian's avatar
      16365ac7
    • Bruce Momjian's avatar
      Looks okay in a quick glance, except error message spelling is poor: · 0bfc64b3
      Bruce Momjian authored
      ! #define ARRISNULL(x) ( (x) ? ( ( ARR_NDIM(x) == NDIM ) ? ( ( ARRNELEMS( x ) )
      ? 0 : 1 ) : ( ( ARR_NDIM(x) ) ? (elog(ERROR,"Array is not one-dimentional: %d di
      mentions", ARR_NDIM(x)),1) : 1 ) ) : 1 )
      
      Should be "one-dimensional" and "dimensions".  Bruce, would you fix that
      when you apply it?
      
      Tom
      0bfc64b3
    • Bruce Momjian's avatar
      1. Fixed error with empty array ( '{}' ), · f368c94f
      Bruce Momjian authored
         test data changed to include such data
      2. Test a dimension of an array ( we support only one-dimension)
      
      Oleg Bartunov
      f368c94f