Skip to content
Snippets Groups Projects
  1. Jan 23, 1998
  2. Jan 07, 1998
  3. Jan 05, 1998
  4. Oct 30, 1997
  5. Sep 18, 1997
  6. Sep 08, 1997
  7. Sep 07, 1997
  8. Aug 19, 1997
  9. Feb 14, 1997
  10. Feb 13, 1997
  11. Feb 12, 1997
    • Marc G. Fournier's avatar
      Patch from Massimo Dal Zotto <dz@cs.unitn.it> · fb70587c
      Marc G. Fournier authored
      The following patches add to the backend a new debugging flag -K which prints
      a debug trace of all locking operations on user relations (those with oid
      greater than 20000). The code is compiled only if LOCK_MGR_DEBUG is defined,
      so the patch should be harmless if not explicitly enabled.
      I'm using the code to trace deadlock conditions caused by application queries
      using the command "$POSTMASTER -D $PGDATA -o '-d 1 -K 1'.
      The patches are for version 6.0 dated 970126.
      fb70587c
    • Bruce Momjian's avatar
      d5a3f52d
  12. Jan 08, 1997
  13. Dec 26, 1996
  14. Nov 27, 1996
  15. Nov 24, 1996
  16. Nov 08, 1996
  17. Nov 06, 1996
  18. Nov 03, 1996
  19. Oct 11, 1996
  20. Aug 01, 1996
    • Marc G. Fournier's avatar
      Fixes: · 164ef6ff
      Marc G. Fournier authored
      Originally, I thought the problem was caused by a function that gets
      called as a normal function where we want to return a value, and as a
      signal handler where we need to have it accept a parameter (the signal
      number) and it returns nothing, I was going to case the function name in
      the signal call as (void (*)(int)).
      
      Looking at all the source, it turns out this function only gets used as
      a signal handler, so I set an int parameter and return void.
      
      I have removed the Linux defines because they are not needed.  BSD let
      this sloppiness slide.  Linux gave a compile error.
      
      
      Submitted by: Bruce Momjian <maillist@candle.pha.pa.us>
      164ef6ff
  21. Jul 31, 1996
    • Marc G. Fournier's avatar
      Fixes: · a05ed5bc
      Marc G. Fournier authored
      In postgres95/src/backend/nodes/readfuncs, lines 1188 and 1189,
      local_node->relname is taken to point to a NameType, while its
      defined as a pointer to char. Both the casting to Name and the
      call of namestrcpy should, IMHO, be changed appropriately (first
      patch).
      
      As far as I could see from the Linux signal header file,
      a signal handler is declared as
      
              typedef void (*__sighandler_t)(int);
      
      Few changes to postgres95/src/backend/storage/lmgr/proc.c seem
      appropriate to comply with this.
      
      Finally, postgres95/src/bin/pg_version/pg_version.c defines
      a function GetDataHome (by default, returning an integer)
      and returns NULL in the function, which isn't an integer...
      
      Submitted by:  ernst.molitor@uni-bonn.de
      a05ed5bc
  22. Jul 25, 1996
  23. Jul 20, 1996
  24. Jul 09, 1996
Loading