1. 04 5月, 2001 1 次提交
  2. 23 4月, 2001 1 次提交
  3. 20 4月, 2001 1 次提交
  4. 15 4月, 2001 1 次提交
  5. 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
  6. 09 4月, 2001 1 次提交
    • M
      · ecd8ddd0
      Marc G. Fournier 提交于
      upgrade tags to rc4 (note lower case for packagers)
      ecd8ddd0
  7. 06 4月, 2001 1 次提交
    • M
      · c6cbf569
      Marc G. Fournier 提交于
      mark it as RC3 ...
      c6cbf569
  8. 02 4月, 2001 1 次提交
    • M
      · 7db692ce
      Marc G. Fournier 提交于
      RC2 preparations ...
      7db692ce
  9. 24 3月, 2001 1 次提交
  10. 21 3月, 2001 1 次提交
    • M
      · 59ab6a49
      Marc G. Fournier 提交于
      well, here goes our first Release Candidate for 7.1 *cross fingers*
      59ab6a49
  11. 17 3月, 2001 1 次提交
    • M
      · afa7b190
      Marc G. Fournier 提交于
      upgrade version to beta6
      afa7b190
  12. 15 3月, 2001 1 次提交
  13. 11 3月, 2001 1 次提交
  14. 10 3月, 2001 1 次提交
  15. 05 3月, 2001 2 次提交
    • P
      Hmmm, a conflict with V1.104 of configure.in remained and broke configure · ef8181b8
      Peter Mount 提交于
      (said redirection required when run).
      
      After checking using cvsweb, removed the offending conflict.
      Rebuilt configure using autoconf, and it now works fine.
      ef8181b8
    • P
      · c18bb990
      Peter Mount 提交于
      Ok, I've split todays commit into three, the first two already done had some
      bits in JDBC & the first set of tools into contrib.
      
      This is the third, and deals with enabling JDBC to be compiled with the main
      source.
      
      What it does is add a new option to configure: --with-java
      
      This option tells configure to look for ant (our build tool of choice) and
      if found, it then compiles both the JDBC driver and the new tools as part
      of the normal make.
      
      Also, when the postgresql install is done, all the .jar files are also
      installed into the ${PGLIB}/java directory (thought best to keep then separate)
      
      Now I had some conflicts when this applied so could someone please double check
      that everything is ok?
      
      Peter
      c18bb990
  16. 03 3月, 2001 1 次提交
  17. 01 3月, 2001 1 次提交
  18. 27 2月, 2001 1 次提交
  19. 24 2月, 2001 1 次提交
    • M
      · a10dc2e9
      Marc G. Fournier 提交于
      update to beta5
      a10dc2e9
  20. 19 2月, 2001 1 次提交
  21. 18 2月, 2001 1 次提交
    • T
      Change s_lock to not use any zero-delay select() calls; these are just a · 33cc5d8a
      Tom Lane 提交于
      waste of cycles on single-CPU machines, and of dubious utility on multi-CPU
      machines too.
      Tweak s_lock_stuck so that caller can specify timeout interval, and
      increase interval before declaring stuck spinlock for buffer locks and XLOG
      locks.
      On systems that have fdatasync(), use that rather than fsync() to sync WAL
      log writes.  Ensure that WAL file is entirely allocated during XLogFileInit.
      33cc5d8a
  22. 11 2月, 2001 1 次提交
  23. 08 2月, 2001 1 次提交
  24. 07 2月, 2001 1 次提交
  25. 04 2月, 2001 1 次提交
  26. 29 1月, 2001 1 次提交
    • M
      · 72401a44
      Marc G. Fournier 提交于
      update configure to beta4
      
      Install a ChangeLog file from beta3->beta4
      72401a44
  27. 23 1月, 2001 1 次提交
    • T
      Remove rangechecks on errno; just call strerror unconditionally. This · e9c936ff
      Tom Lane 提交于
      eliminates a raft of portability issues, including whether sys_nerr
      exists, whether the platform has any valid negative errnos, etc.  The
      downside is minimal: errno shouldn't ever contain an invalid value anyway,
      and if it does, reasonably modern versions of strerror will not choke.
      This rangecheck idea seemed good at the time, but it's clearly a net loss,
      and I apologize to all concerned for having ever put it in.
      e9c936ff
  28. 21 1月, 2001 1 次提交
  29. 10 1月, 2001 1 次提交
  30. 09 1月, 2001 1 次提交
    • P
      · 460a9f8a
      PostgreSQL Daemon 提交于
      jump version to beta3 ... beta2 was created and pulled due to a couple of
      large-ish bugs that Tom and Vadim were able to fix, but to avoid any
      confusion, beta2 was removed ... and for tag'ng purposes, beta3 is being
      created ...
      460a9f8a
  31. 07 1月, 2001 1 次提交
    • P
      · 6781aa47
      PostgreSQL Daemon 提交于
      tag configure as beta2 ..
      6781aa47
  32. 05 1月, 2001 1 次提交
  33. 03 1月, 2001 1 次提交
  34. 02 1月, 2001 1 次提交
  35. 30 12月, 2000 1 次提交
  36. 28 12月, 2000 1 次提交
    • T
      Fix portability problems recently exposed by regression tests on Alphas. · 8609d4ab
      Tom Lane 提交于
      1. Distinguish cases where a Datum representing a tuple datatype is an OID
      from cases where it is a pointer to TupleTableSlot, and make sure we use
      the right typlen in each case.
      2. Make fetchatt() and related code support 8-byte by-value datatypes on
      machines where Datum is 8 bytes.  Centralize knowledge of the available
      by-value datatype sizes in two macros in tupmacs.h, so that this will be
      easier if we ever have to do it again.
      8609d4ab
  37. 16 12月, 2000 1 次提交
  38. 07 12月, 2000 1 次提交
    • M
      · db0de224
      Marc G. Fournier 提交于
      update VERSION to 7.1beta1..
      db0de224
  39. 30 11月, 2000 1 次提交
    • T
      Get rid of not-very-portable fcntl(F_SETLK) mechanism for locking the Unix · 792b0f46
      Tom Lane 提交于
      socket file, in favor of having an ordinary lockfile beside the socket file.
      Clean up a few robustness problems in the lockfile code.  If postmaster is
      going to reject a connection request based on database state, it will now
      tell you so before authentication exchange not after.  (Of course, a failure
      after is still possible if conditions change meanwhile, but this makes life
      easier for a yet-to-be-written pg_ping utility.)
      792b0f46