1. 16 10月, 2001 1 次提交
    • T
      Ok, here is the modified encoding table (column1 is the standard name, · cfe01796
      Tatsuo Ishii 提交于
      2 is our "official" name, and 3 is alias). If there's no objection, I
      will change them.
      
      ASCII		SQL_ASCII
      UTF-8		UNICODE		UTF_8
      MULE-INTERNAL	MULE_INTERNAL
      ISO-8859-1	LATIN1		ISO_8859_1
      ISO-8859-2	LATIN2		ISO_8859_2
      ISO-8859-3	LATIN3		ISO_8859_3
      ISO-8859-4	LATIN4		ISO_8859_4
      ISO-8859-5	ISO_8859_5
      ISO-8859-6	ISO_8859_6
      ISO-8859-7	ISO_8859_7
      ISO-8859-8	ISO_8859_8
      ISO-8859-9	LATIN5		ISO_8859_9
      ISO-8859-10	LATIN6		ISO_8859_10
      ISO-8859-13	LATIN7		ISO_8859_13
      ISO-8859-14	LATIN8		ISO_8859_14
      ISO-8859-15	LATIN9		ISO_8859_15
      ISO-8859-16	LATIN10		ISO_8859_16
      cfe01796
  2. 13 10月, 2001 1 次提交
  3. 11 10月, 2001 1 次提交
  4. 01 10月, 2001 1 次提交
    • B
      > > > > > - PostgreSQL requires to be compiled with --enable-multibyte · 03489512
      Bruce Momjian 提交于
      > > > > >   and --enable-unicode-convertion if it ought to work correctly
      > > > > >   with Tcl/Tk >= 8.1 (client or server side).
      > > > > >
      > > > > > - PL/Tcl needs to be changed to use pg_do_encoding_conversion
      > > > > >   if it runs on a Tcl version >= 8.1 .
      > > >
      > > > > I'll do pl/tcl part in the next version of patch. Using this approach we
      > > > > can eliminate overhead for databases in UNICODE.
      > > >
      > > > Any progress on this?  I'd prefer to get rid of this --enable-pltcl-utf
      > > > option before release.
      > >
      > > Done
      > >
      > > Next version removes --enable-pltcl-utf switch and enables embedded
      > > utf conversion of pgsql if tcl version >=8.1 and --enable-unicode-conversion
      03489512
  5. 23 9月, 2001 1 次提交
    • P
      Provide some initial support for building the ODBC driver for · 364a7ebe
      Peter Eisentraut 提交于
      an already installed iODBC or unixODBC driver manager.  In particular,
      use the include files provided by the driver manager over our own,
      and use the odbcinst library of the driver manager rather than gpps.c.
      
      Migrate portability sections common to several files into psqlodbc.h.
      364a7ebe
  6. 14 9月, 2001 1 次提交
  7. 12 9月, 2001 1 次提交
  8. 11 9月, 2001 2 次提交
  9. 08 9月, 2001 1 次提交
  10. 06 9月, 2001 2 次提交
    • B
      PAM authentication: · 04c1f729
      Bruce Momjian 提交于
      > pam_strerror() should be used a few more times, rather than just saying
      > "Error!".  Also, the configure.in snippet seems wrong.  You add
      > -I$pam_prefix/include/security to $INCLUDES and then you #include
      > <security/pam_appl.h>.  This whole thing is probably unnecessary, since
      > PAM is a system library on the systems where it exists, so the headers
      > and libraries are found automatically, unlike OpenSSL and
      > Kerberos.
      
      See attached revised patch. (I'm sure the configure.in stuff can be done
      right/better, I'm just not enough of a autoconf guru to know what to
      change it to.)
      
      Dominic J. Eidson
      04c1f729
    • B
      Next version of patch. · 16910e44
      Bruce Momjian 提交于
      Now with documentation update and disabling of UTF conversion for Tcl <=8.0
      
      On Fri, 24 Aug 2001, Vsevolod Lobko wrote:
      
      > On Thu, 23 Aug 2001, Tom Lane wrote:
      >
      > > > Is this looks better?
      > >
      > > It does, but one small gripe: the lack of semicolons will probably cause
      > > pg_indent to mess up the indentation.  (I know emacs' autoindent mode
      > > will not work nicely with it, either.)  Please set up the macros so that
      > > you write
      > >
      > >                         UTF_BEGIN;
      > >                         Tcl_DStringAppend(&unknown_src, UTF_E2U(part), -1);
      > >                         UTF_END;
      > >
      > > and then I'll be happy.
      >
      > Attached revised patch
      >
      > > Your point about overhead is a good one, so I retract the gripe about
      > > using a configure switch.  But please include documentation patches to
      > > describe the configure option in the administrator's guide (installation
      > > section).
      >
      > This patch still uses configure switch for enabling feature.
      >
      > For enabling based on tcl version we have 2 posibilites:
      >  1) having feature enabled by default, but in pltcl.c check for tcl
      >     version and disable it for old versions
      >  2) enable or disable at configure time based on tcl version, but there
      >     are problem - current configure don't checks for tcl version at all
      >     and my configure skills not enought for adding this
      >
      
      Vsevolod Lobko
      16910e44
  11. 27 8月, 2001 1 次提交
  12. 24 8月, 2001 1 次提交
  13. 02 8月, 2001 2 次提交
  14. 30 7月, 2001 1 次提交
  15. 12 6月, 2001 1 次提交
    • 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
  16. 03 6月, 2001 1 次提交
    • P
      Native Language Support (NLS) · e5420364
      Peter Eisentraut 提交于
      Use --enable-nls to turn it on; see installation instructions for details.
      See developer's guide how to make use of it in programs and how to add
      translations.
      
      psql sources have been almost fully prepared and an incomplete German
      translation has been provided.  In the backend, only elog() calls are
      currently translatable, and the provided German translation file is more
      of a placeholder.
      e5420364
  17. 17 5月, 2001 1 次提交
  18. 13 5月, 2001 1 次提交
  19. 12 5月, 2001 1 次提交
  20. 11 5月, 2001 1 次提交
  21. 10 5月, 2001 3 次提交
  22. 04 5月, 2001 1 次提交
  23. 23 4月, 2001 1 次提交
  24. 20 4月, 2001 1 次提交
  25. 15 4月, 2001 1 次提交
  26. 14 4月, 2001 1 次提交
    • M
      · 741604dd
      Marc G. Fournier 提交于
      tag the source tree as REL7_1, renaming the old tag REL7_1_BETA like it
      should have been done
      
      generate a new Changelog from rc4, which is nice and short ... one python
      interface change
      
      tag configure as 7.1, for generating the packages ...
      
      This is it folks ... Release 7.1 is officially here ...
      741604dd
  27. 09 4月, 2001 1 次提交
    • M
      · ecd8ddd0
      Marc G. Fournier 提交于
      upgrade tags to rc4 (note lower case for packagers)
      ecd8ddd0
  28. 06 4月, 2001 1 次提交
    • M
      · c6cbf569
      Marc G. Fournier 提交于
      mark it as RC3 ...
      c6cbf569
  29. 02 4月, 2001 1 次提交
    • M
      · 7db692ce
      Marc G. Fournier 提交于
      RC2 preparations ...
      7db692ce
  30. 24 3月, 2001 1 次提交
  31. 21 3月, 2001 1 次提交
    • M
      · 59ab6a49
      Marc G. Fournier 提交于
      well, here goes our first Release Candidate for 7.1 *cross fingers*
      59ab6a49
  32. 17 3月, 2001 1 次提交
    • M
      · afa7b190
      Marc G. Fournier 提交于
      upgrade version to beta6
      afa7b190
  33. 15 3月, 2001 1 次提交
  34. 11 3月, 2001 1 次提交
  35. 10 3月, 2001 1 次提交