1. 12 6月, 2001 5 次提交
    • B
      autoconf · d2c83581
      Bruce Momjian 提交于
      d2c83581
    • B
      The attached patch enables PostgreSQL CVS to build cleanly under Cygwin · 92f45065
      Bruce Momjian 提交于
      when built against readline 4.2.  Specifically, it handles the deprecation
      of
      
          filename_completion_function()
      
      with preference for
      
          rl_filename_completion_function()
      
      Although, I was motivated by Cygwin support, IMO this patch is appropriate
      for all platforms.  To quote from the readline source:
      
          #if 0
          /* Backwards compatibility (compat.c).  These will go away sometime. */
          ...
          extern READLINE_EXPORT(char, *filename_completion_function) ...
          #endif
      
      Note that this patch is modeled after the one by Peter Eisentraut for
      completion_matches():
      
          http://www.ca.postgresql.org/~petere/readline42.html
      I tested this patch under the following environments:
      
          Cygwin with readline 4.1
          Cygwin with readline 4.2
          Linux with readline 2.2.1
          Linux with readline 4.2
      
      and it behaved as expected.
      
      Jason Tishler
      92f45065
    • B
      Got two patches that were found by folks on the Castor list, that we'd like to · 8af0ea9d
      Bruce Momjian 提交于
      submit.  These were done for the jdbc2 driver.  The first one is for support
      of the Types.BIT in the PreparedStatement class.  The following lines need to be
      inserted in the switch statment, at around line 530:
      
      
      	(Prepared statment, line 554, before the default: switch
      	case Types.BIT:
      	     if (x instanceof Boolean) {
      	          set(parameterIndex, ((Boolean)x).booleanValue() ? "TRUE" : "FALSE");
      	     } else {
      	          throw new PSQLException("postgresql.prep.type");
      	     }
      	     break;
      
      
      	The second one is dealing with blobs,
      
      	inserted in PreparedStatemant.java (After previous patch line, 558):
      	         case Types.BINARY:
      	         case Types.VARBINARY:
      	                              setObject(parameterIndex,x);
      	                              break;
      	and in ResultSet.java (Around line 857):
      	        case Types.BINARY:
      	        case Types.VARBINARY:
      	                        return getBytes(columnIndex);
      
      Ned Wolpert <ned.wolpert@knowledgenet.com>
      8af0ea9d
    • P
      Add French psql translation. (My rendition of French anyway...) · 05150e2d
      Peter Eisentraut 提交于
      Fix typo in message.
      05150e2d
    • B
      Update FAQ. · 94cb2201
      Bruce Momjian 提交于
      94cb2201
  2. 11 6月, 2001 6 次提交
  3. 10 6月, 2001 11 次提交
  4. 09 6月, 2001 4 次提交
  5. 08 6月, 2001 3 次提交
  6. 07 6月, 2001 10 次提交
  7. 06 6月, 2001 1 次提交