Skip to content
Snippets Groups Projects
  1. Jul 20, 2004
  2. Jul 17, 2004
  3. Jul 14, 2004
  4. Jul 10, 2004
  5. Jun 24, 2004
  6. Jun 16, 2004
  7. Jun 08, 2004
  8. May 28, 2004
  9. May 27, 2004
  10. May 22, 2004
    • Tom Lane's avatar
      Use wide-character library routines, if available, for upper/lower/initcap · 39838694
      Tom Lane authored
      functions.  This allows these functions to work correctly with Unicode and
      other multibyte encodings.  Per prior discussion.
      
      Also, revert my earlier change to move installation path mashing from
      Makefile.global to configure.  Turns out not to work well because configure
      script is working with unexpanded variables, and so fails to match in
      cases where it should match.
      39838694
  11. May 21, 2004
  12. May 20, 2004
  13. May 19, 2004
  14. May 18, 2004
  15. May 17, 2004
  16. May 14, 2004
  17. May 13, 2004
  18. May 11, 2004
    • Bruce Momjian's avatar
      As part of the work for making relocatable installs, I have re-factored · fda15b35
      Bruce Momjian authored
      all the code that looks for other binaries.  I move FindExec into
      port/exec.c (and renamed it to find_my_binary()).  I also added
      find_other_binary that looks for another binary in the same directory as
      the calling program, and checks the version string.
      
      The only behavior change was that initdb and pg_dump would look in the
      hard-coded bindir directory if it can't find the requested binary in the
      same directory as the caller.  The new code throws an error.  The old
      behavior seemed too error prone for version mismatches.
      fda15b35
  19. May 07, 2004
    • Tom Lane's avatar
      Solve the 'Turkish problem' with undesirable locale behavior for case · 0bd61548
      Tom Lane authored
      conversion of basic ASCII letters.  Remove all uses of strcasecmp and
      strncasecmp in favor of new functions pg_strcasecmp and pg_strncasecmp;
      remove most but not all direct uses of toupper and tolower in favor of
      pg_toupper and pg_tolower.  These functions use the same notions of
      case folding already developed for identifier case conversion.  I left
      the straight locale-based folding in place for situations where we are
      just manipulating user data and not trying to match it to built-in
      strings --- for example, the SQL upper() function is still locale
      dependent.  Perhaps this will prove not to be what's wanted, but at
      the moment we can initdb and pass regression tests in Turkish locale.
      0bd61548
  20. May 05, 2004
  21. Apr 30, 2004
  22. Apr 27, 2004
  23. Apr 26, 2004
Loading