1. 08 Jun, 2000 1 commit
  2. 02 Jun, 2000 3 commits
  3. 28 May, 2000 1 commit
    • Tom Lane's avatar
      First round of changes for new fmgr interface. fmgr itself and the · 0a7fb4e9
      Tom Lane authored
      key call sites are changed, but most called functions are still oldstyle.
      An exception is that the PL managers are updated (so, for example, NULL
      handling now behaves as expected in plperl and plpgsql functions).
      NOTE initdb is forced due to added column in pg_proc.
      0a7fb4e9
  4. 12 Apr, 2000 3 commits
  5. 20 Mar, 2000 1 commit
  6. 19 Mar, 2000 1 commit
  7. 26 Jan, 2000 1 commit
    • Bruce Momjian's avatar
      Add: · 5c25d602
      Bruce Momjian authored
        * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
      
      to all files copyright Regents of Berkeley.  Man, that's a lot of files.
      5c25d602
  8. 13 Jan, 2000 1 commit
  9. 20 Dec, 1999 1 commit
  10. 17 Jul, 1999 2 commits
  11. 13 Jul, 1999 1 commit
  12. 01 Jul, 1999 1 commit
  13. 19 Jun, 1999 2 commits
  14. 25 May, 1999 1 commit
  15. 02 Apr, 1999 1 commit
    • Tom Lane's avatar
      Remove overly presumptuous use of __STDC__ in c.h, replacing · f620241d
      Tom Lane authored
      it with configure-script tests to see whether const, inline, volatile, etc
      work or not.  (Curiously, configure was already doing the work to see if
      const and inline were OK, but the results were not getting plugged into
      config.h :-(.)
      f620241d
  16. 30 Mar, 1999 1 commit
  17. 09 Mar, 1999 1 commit
    • Marc G. Fournier's avatar
      · f34240de
      Marc G. Fournier authored
      Changes to fix/improve the dynamic loading on NT
      
      From: Horak Daniel <horak@mmp.plzen-city.cz>
      f34240de
  18. 13 Feb, 1999 1 commit
  19. 11 Feb, 1999 1 commit
  20. 17 Jan, 1999 2 commits
  21. 13 Dec, 1998 1 commit
  22. 04 Oct, 1998 1 commit
  23. 01 Sep, 1998 1 commit
  24. 29 Aug, 1998 1 commit
    • Bruce Momjian's avatar
      Hello! · a060d5be
      Bruce Momjian authored
      Here is a new patch for libpq, to make it work on Win32 again (since
      the latest modifications broke it a little).
      
      Please also add the file "libpq.rc" to the interfaces/libpq directory.
      This will allow version-stamping of the generated DLL file, so that
      automatic install programs (and interested users) can determine
      the version of the file.  The file is currently set as "prerelease".
      Before the release, somebody should change the line "FILEFLAGS
      VS_FF_PRERELEASE" to "FILEFLAGS 0".  That information should probably
      go into toos\RELEASE_CHANGES.
      
      The patch is against the cvs as of ~ 1998-08-26 14:30 CEST.
      
      
      //Magnus
      a060d5be
  25. 25 Aug, 1998 1 commit
    • Marc G. Fournier's avatar
      From: Massimo Dal Zotto <dz@cs.unitn.it> · 1a5fb654
      Marc G. Fournier authored
      assert.patch
      
              adds a switch to turn on/off the assert checking if enabled at compile
              time. You can now compile postgres with assert checking and disable it
              at runtime in a production environment.
      1a5fb654
  26. 23 Jun, 1998 1 commit
  27. 20 Jun, 1998 1 commit
  28. 15 Jun, 1998 1 commit
  29. 06 Apr, 1998 1 commit
  30. 31 Mar, 1998 1 commit
  31. 20 Mar, 1998 1 commit
  32. 26 Feb, 1998 1 commit
  33. 24 Feb, 1998 1 commit
    • Marc G. Fournier's avatar
      From: t-ishii@sra.co.jp · 96316211
      Marc G. Fournier authored
      Ok. I have decided to use:
      
      #if defined(sun) && if defined(sparc) && !defined(__svr4)
      
      instead of defined(sunos4).  interfaces/libpq/libpq-fe.h and
      include/c.h have been modified(see included patches).
      
      Another porblems I have found are:
      
      o SunOS lacks strtoul(). to fix this I stole strtoul.c from FreeBSD
      and place it under backend/port. necessary modifications have been
      also made to backend/port/Makefile.in, include/config.h.in and
      configure.in (see included patches).
      96316211