1. 08 8月, 2001 2 次提交
    • B
      A small patch to keep postgres working on the latest BeOS. · 1b2d57dc
      Bruce Momjian 提交于
      Cyril VELTER
      1b2d57dc
    • 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
  2. 07 8月, 2001 10 次提交
  3. 06 8月, 2001 6 次提交
  4. 05 8月, 2001 11 次提交
    • T
      Endeavor to make pgstats buffer process (a) safe and (b) useful. · e8f10973
      Tom Lane 提交于
      Make sure it exits immediately when collector process dies --- in old code,
      buffer process would hang around and compete with the new buffer process
      for packets.  Make sure it doesn't block on writing the pipe when the
      collector falls more than a pipeload behind.  Avoid leaking pgstats FDs
      into every backend.
      e8f10973
    • T
      Remove no-longer-needed fcntl call (I'm not sure it *ever* did anything · 5181d37e
      Tom Lane 提交于
      useful, in fact).
      5181d37e
    • B
      Back out LOCK A,B,C patch at Tom's suggestion. · d1c96330
      Bruce Momjian 提交于
      d1c96330
    • B
      Compile fix for jdbc1. · eb610fb8
      Bruce Momjian 提交于
      eb610fb8
    • B
      This patch is because Hurd does not support NOFILE. It is against current · 3e518682
      Bruce Momjian 提交于
      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
    • B
      This patch adds the following to the FTI module: · e9ea1255
      Bruce Momjian 提交于
      * 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
    • B
      Add LOCK A,B,C functionality as LOCK A;LOCK B;LOCK C; as agreed. · 16365ac7
      Bruce Momjian 提交于
      Neil Padgett
      16365ac7
    • B
      Looks okay in a quick glance, except error message spelling is poor: · 0bfc64b3
      Bruce Momjian 提交于
      ! #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
    • B
      1. Fixed error with empty array ( '{}' ), · f368c94f
      Bruce Momjian 提交于
         test data changed to include such data
      2. Test a dimension of an array ( we support only one-dimension)
      
      Oleg Bartunov
      f368c94f
    • B
      > 1) When a row is retrieved, and then a SQL_FETCH_FIRST is issued, the · f8683e8a
      Bruce Momjian 提交于
      check
      > in convert.c
      > does not consider the fact that the value in the field has been altered to
      > be a '1' if the
      > backend handed it a 't'.  The net result being that the first row on any
      > subsequent queries
      > has all it's boolean set to 0.
      
      Aidan Mountford
      f8683e8a
    • B
      Attached is a patch that does the following: · 184505bb
      Bruce Momjian 提交于
      1) improves performance of commit/rollback by reducing number of round
      trips to the server
      2) uses 7.1 functionality for setting the transaction isolation level
      3) backs out a patch from 11 days ago because that code failed to
      compile under jdk1.1
      
      Details:
      
      1)  The old code was doing the following for each commit:
         commit
         begin
         set transaction isolation level xxx
      thus a call to commit was performing three round trips to the database.
        The new code does this in one round trip as:
         commit; begin; set transaction isolation level xxx
      
      In a simple test program that performs 1000 transactions (where each
      transaction does one simple select inside that transaction) has the
      following before and after timings:
      
      Client and Server on same machine
      
      old         new
      ---         ---
      1.877sec    1.405sec   25.1% improvement
      
      Client and Server on different machines
      old         new
      ---         ---
      4.184sec    2.927sec   34.3% improvement
      
      (all timings are an average of four different runs)
      
      
      2)  The driver was using 'set transaction isolation level xxx' at the
      begining of each transaction, instead of using the new 7.1 syntax of
      'set session characteristics as transaction isolation level xxx' which
      only needs to be done once instead of for each transaction.  This is
      done conditionally (i.e. if server is 7.0 or older do the old behaviour,
      else do the new behaviour) to not break backward compatibility.  This
      also required the movement of some code to check/test database version
      numbers from the DatabaseMetaData object to the Connection object.
      
      3) Finally while testing, I discovered that the code that was checked in
        11 days ago actually didn't compile.  The code in the patch for
      Connection.setCatalog() used Properties.setProperty() which only exists
      in JDK1.2 or higher.  Thus compiling the JDBC1 driver failed as this
      method doesn't exist.  Thus I backed out that patch.
      
      
      Barry Lind
      184505bb
  5. 04 8月, 2001 5 次提交
  6. 03 8月, 2001 3 次提交
  7. 02 8月, 2001 3 次提交