1. 27 3月, 2009 1 次提交
    • P
      Gettext plural support · 8032d76b
      Peter Eisentraut 提交于
      In the backend, I changed only a handful of exemplary or important-looking
      instances to make use of the plural support; there is probably more work
      there.  For the rest of the source, this should cover all relevant cases.
      8032d76b
  2. 03 2月, 2009 1 次提交
  3. 16 11月, 2007 1 次提交
  4. 29 10月, 2007 1 次提交
  5. 30 8月, 2007 1 次提交
  6. 06 8月, 2007 1 次提交
  7. 19 3月, 2007 1 次提交
  8. 19 2月, 2007 1 次提交
  9. 01 11月, 2006 1 次提交
  10. 04 10月, 2006 1 次提交
  11. 27 6月, 2006 2 次提交
  12. 08 6月, 2006 1 次提交
    • B
      Prepare code to be built by MSVC: · 399a36a7
      Bruce Momjian 提交于
      	o  remove many WIN32_CLIENT_ONLY defines
      	o  add WIN32_ONLY_COMPILER define
      	o  add 3rd argument to open() for portability
      	o  add include/port/win32_msvc directory for
      	   system includes
      
      Magnus Hagander
      399a36a7
  13. 22 5月, 2006 1 次提交
  14. 12 2月, 2006 1 次提交
  15. 15 10月, 2005 1 次提交
  16. 22 6月, 2005 1 次提交
    • N
      Correct some code in pg_restore when reading the header of a tar archive: · 05db8b50
      Neil Conway 提交于
      (1) The code doesn't initialize `sum', so the initial "does the checksum
          match?" test is wrong.
      
      (2) The loop that is intended to check for a "null block" just checks
          the first byte of the tar block 512 times, rather than each of the
          512 bytes one time (!), which I'm guessing was the intent.
      
      It was only through sheer luck that this worked in the first place.
      
      Per Coverity static analysis performed by EnterpriseDB.
      05db8b50
  17. 26 1月, 2005 1 次提交
  18. 29 11月, 2004 1 次提交
    • B
      Add comment explaining possible compiler warning: · 55481228
      Bruce Momjian 提交于
          /*
           *  Some compilers with throw a warning knowing this test can never be
           *  true because off_t can't exceed the compared maximum.
           */
          if (th->fileLen > MAX_TAR_MEMBER_FILELEN)
              die_horribly(AH, modulename, "archive member too large for tar format\n");
      55481228
  19. 07 10月, 2004 1 次提交
  20. 29 8月, 2004 1 次提交
  21. 07 5月, 2004 1 次提交
    • T
      Solve the 'Turkish problem' with undesirable locale behavior for case · 0bd61548
      Tom Lane 提交于
      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
  22. 04 3月, 2004 1 次提交
    • T
      Modify pg_dump so that the preferred dump order is by name within · 9e733eab
      Tom Lane 提交于
      object types, rather than by OID.  This should help ensure consistent
      dump output from databases that are logically the same but have different
      histories, per recent discussion about 'diffing' databases.  The patch
      is bulky because of renaming of fields, but not very complicated.
      Also, do some tweaking to cause BLOB restoration to be done in a better
      order, and clean up pg_restore's textual output to exactly match pg_dump.
      9e733eab
  23. 09 12月, 2003 1 次提交
  24. 06 12月, 2003 1 次提交
    • T
      Massive overhaul of pg_dump: make use of dependency information from · 005a1217
      Tom Lane 提交于
      pg_depend to determine a safe dump order.  Defaults and check constraints
      can be emitted either as part of a table or domain definition, or
      separately if that's needed to break a dependency loop.  Lots of old
      half-baked code for controlling dump order removed.
      005a1217
  25. 30 11月, 2003 1 次提交
    • P
      · 969685ad
      PostgreSQL Daemon 提交于
      $Header: -> $PostgreSQL Changes ...
      969685ad
  26. 08 10月, 2003 1 次提交
  27. 04 8月, 2003 1 次提交
  28. 23 7月, 2003 1 次提交
  29. 20 3月, 2003 1 次提交
  30. 02 2月, 2003 1 次提交
  31. 11 1月, 2003 1 次提交
  32. 25 10月, 2002 1 次提交
  33. 23 10月, 2002 1 次提交
  34. 11 9月, 2002 1 次提交
  35. 07 9月, 2002 1 次提交
  36. 05 9月, 2002 1 次提交
  37. 04 9月, 2002 1 次提交
  38. 29 8月, 2002 1 次提交
  39. 21 8月, 2002 1 次提交