1. 06 Apr, 1998 1 commit
    • Bruce Momjian's avatar
      Hi, · 1e801a8f
      Bruce Momjian authored
      Attached you'll find a (big) patch that fixes make dep and make
      depend in all Makefiles where I found it to be appropriate.
      
      It also removes the dependency in Makefile.global for NAMEDATALEN
      and OIDNAMELEN by making backend/catalog/genbki.sh and bin/initdb/initdb.sh
      a little smarter.
      
      This no longer requires initdb.sh that is turned into initdb with
      a sed script when installing Postgres, hence initdb.sh should be
      renamed to initdb (after the patch has been applied :-) )
      
      This patch is against the 6.3 sources, as it took a while to
      complete.
      
      Please review and apply,
      
      Cheers,
      
      Jeroen van Vianen
      1e801a8f
  2. 05 Apr, 1998 1 commit
  3. 26 Feb, 1998 1 commit
  4. 07 Jan, 1998 1 commit
  5. 05 Jan, 1998 1 commit
  6. 20 Dec, 1997 1 commit
  7. 19 Dec, 1997 1 commit
  8. 07 Nov, 1997 1 commit
  9. 18 Sep, 1997 1 commit
  10. 08 Sep, 1997 2 commits
  11. 07 Sep, 1997 1 commit
  12. 19 Aug, 1997 1 commit
  13. 18 Aug, 1997 1 commit
  14. 12 Aug, 1997 1 commit
  15. 28 Jul, 1997 1 commit
  16. 23 May, 1997 1 commit
    • Vadim B. Mikheev's avatar
      AllocateFile(): · d8652288
      Vadim B. Mikheev authored
         fdleft = pg_nofile() - allocatedFiles - nfile;
      looks more realistic, but too noisy -
         fdleft = pg_nofile() - allocatedFiles;
      restored.
      d8652288
  17. 22 May, 1997 1 commit
  18. 20 Feb, 1997 1 commit
  19. 14 Feb, 1997 1 commit
  20. 27 Jan, 1997 1 commit
  21. 13 Jan, 1997 1 commit
    • Marc G. Fournier's avatar
      From: Keith Parks <emkxp01@mtcc.demon.co.uk> · ef228cb1
      Marc G. Fournier authored
      OK, The votes are in for the NOFILES limit.
      
      With the exception of Next, for which I've not yet heard, all supported platforms
      seem to have the sysconf() call.
      
      
      port           supported	default	Source.
      aix            yes		2000	darrenk@insightdist.com
      alpha          yes		4096	mjl@wwx.vip.at
      BSD44_derived  yes		64	scrappy@hub.org
      bsdi           yes		???	maillist@candle.pha.pa.us
      dgux           yes		???	geek@andrew.cmu.edu
      hpux           yes		60	emkxp01@mtcc.demon.co.uk
      i386_solaris   yes		64	emkxp01@mtcc.demon.co.uk
      irix5          yes		200	martin@biochem.uc.ac.uk
      linux          yes		256	emkxp01@mtcc.demon.co.uk
      next           ????		???
      sparc_solaris  yes		64	emkxp01@mtcc.demon.co.uk
      sunos4         yes		64	emkxp01@mtcc.demon.co.uk
      svr4           yes		64	chicks@chicks.net
      ultrix4        yes		64	erik@sockdev.uni-c.dk
      
      So here's a patch that I think will do the job.
      (I assume Next will have sysconf() but if not just add MISSING_SYSCONF to
       the config.h file )
      
      Thanks,
      Keith.
      ef228cb1
  22. 28 Dec, 1996 1 commit
  23. 27 Dec, 1996 1 commit
  24. 04 Dec, 1996 1 commit
  25. 09 Nov, 1996 1 commit
  26. 08 Nov, 1996 1 commit
  27. 06 Nov, 1996 1 commit
  28. 04 Nov, 1996 1 commit
  29. 31 Oct, 1996 1 commit
  30. 27 Oct, 1996 1 commit
  31. 22 Sep, 1996 1 commit
    • Marc G. Fournier's avatar
      *** src/backend/storage/file/fd.c.orig Thu Sep 12 17:17:21 1996 · e7c3adcd
      Marc G. Fournier authored
      --- src/backend/storage/file/fd.c       Thu Sep 12 17:23:38 1996
      ***************
      *** 262,268 ****
            Delete(file);
      
            /* save the seek position */
      !     fileP->seekPos = lseek(fileP->fd, 0L, SEEK_CUR);
            Assert( fileP->seekPos != -1);
      
            /* if we have written to the file, sync it */
      --- 262,268 ----
            Delete(file);
      
            /* save the seek position */
      !     fileP->seekPos = (long) lseek(fileP->fd, 0L, SEEK_CUR);
            Assert( fileP->seekPos != -1);
      
            /* if we have written to the file, sync it */
      
      
      Submitted by: Randy Terbush <randy@zyzzyva.com>
      e7c3adcd
  32. 22 Jul, 1996 1 commit
    • Marc G. Fournier's avatar
      More merges from Dr. George's tree... · 5108a5b3
      Marc G. Fournier authored
              - src/backend/tcop/*
                      - cosmetic changes to OPENLINK patches
              - src/backend/storage/*
                      - more changes, mostly cosmetic
              - src/backend/ports/*
                      - merge in patches for aix and i386_solaris
      5108a5b3
  33. 18 Jul, 1996 1 commit
  34. 15 Jul, 1996 1 commit
  35. 09 Jul, 1996 1 commit