1. 30 5月, 2001 1 次提交
  2. 13 5月, 2001 1 次提交
  3. 07 5月, 2001 1 次提交
  4. 23 3月, 2001 1 次提交
  5. 22 3月, 2001 1 次提交
  6. 10 2月, 2001 1 次提交
    • T
      Restructure the key include files per recent pghackers discussion: there · d08741ea
      Tom Lane 提交于
      are now separate files "postgres.h" and "postgres_fe.h", which are meant
      to be the primary include files for backend .c files and frontend .c files
      respectively.  By default, only include files meant for frontend use are
      installed into the installation include directory.  There is a new make
      target 'make install-all-headers' that adds the whole content of the
      src/include tree to the installed fileset, for use by people who want to
      develop server-side code without keeping the complete source tree on hand.
      Cleaned up a whole lot of crufty and inconsistent header inclusions.
      d08741ea
  7. 25 1月, 2001 1 次提交
  8. 24 1月, 2001 1 次提交
  9. 27 11月, 2000 1 次提交
  10. 26 11月, 2000 1 次提交
  11. 14 11月, 2000 1 次提交
  12. 13 11月, 2000 1 次提交
    • B
      UUNET is looking into offering PostgreSQL as a part of a managed web · 2150c2ed
      Bruce Momjian 提交于
      hosting product, on both shared and dedicated machines.  We currently
      offer Oracle and MySQL, and it would be a nice middle-ground.
      However, as shipped, PostgreSQL lacks the following features we need
      that MySQL has:
      
      1. The ability to listen only on a particular IP address.  Each
         hosting customer has their own IP address, on which all of their
         servers (http, ftp, real media, etc.) run.
      2. The ability to place the Unix-domain socket in a mode 700 directory.
         This allows us to automatically create an empty database, with an
         empty DBA password, for new or upgrading customers without having
         to interactively set a DBA password and communicate it to (or from)
         the customer.  This in turn cuts down our install and upgrade times.
      3. The ability to connect to the Unix-domain socket from within a
         change-rooted environment.  We run CGI programs chrooted to the
         user's home directory, which is another reason why we need to be
         able to specify where the Unix-domain socket is, instead of /tmp.
      4. The ability to, if run as root, open a pid file in /var/run as
         root, and then setuid to the desired user.  (mysqld -u can almost
         do this; I had to patch it, too).
      
      The patch below fixes problem 1-3.  I plan to address #4, also, but
      haven't done so yet.  These diffs are big enough that they should give
      the PG development team something to think about in the meantime :-)
      Also, I'm about to leave for 2 weeks' vacation, so I thought I'd get
      out what I have, which works (for the problems it tackles), now.
      
      With these changes, we can set up and run PostgreSQL with scripts the
      same way we can with apache or proftpd or mysql.
      
      In summary, this patch makes the following enhancements:
      
      1. Adds an environment variable PGUNIXSOCKET, analogous to MYSQL_UNIX_PORT,
         and command line options -k --unix-socket to the relevant programs.
      2. Adds a -h option to postmaster to set the hostname or IP address to
         listen on instead of the default INADDR_ANY.
      3. Extends some library interfaces to support the above.
      4. Fixes a few memory leaks in PQconnectdb().
      
      The default behavior is unchanged from stock 7.0.2; if you don't use
      any of these new features, they don't change the operation.
      
      David J. MacKenzie
      2150c2ed
  13. 18 9月, 2000 1 次提交
  14. 07 9月, 2000 1 次提交
  15. 30 8月, 2000 1 次提交
  16. 02 7月, 2000 1 次提交
  17. 15 5月, 2000 1 次提交
  18. 13 5月, 2000 1 次提交
  19. 11 5月, 2000 2 次提交
  20. 13 4月, 2000 1 次提交
  21. 19 3月, 2000 1 次提交
  22. 02 3月, 2000 1 次提交
  23. 27 2月, 2000 1 次提交
  24. 20 2月, 2000 1 次提交
  25. 16 2月, 2000 1 次提交
  26. 14 2月, 2000 1 次提交
  27. 08 2月, 2000 1 次提交
  28. 05 2月, 2000 1 次提交
  29. 30 1月, 2000 1 次提交
    • P
      A few minor psql enhancements · 2b84cbb6
      Peter Eisentraut 提交于
      Initdb help correction
      Changed end/abort to commit/rollback and changed related notices
      Commented out way old printing functions in libpq
      Fixed a typo in alter table / alter column
      2b84cbb6
  30. 27 1月, 2000 1 次提交
  31. 26 1月, 2000 1 次提交
    • B
      Add: · 5c25d602
      Bruce Momjian 提交于
        * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
      
      to all files copyright Regents of Berkeley.  Man, that's a lot of files.
      5c25d602
  32. 20 1月, 2000 1 次提交
  33. 19 1月, 2000 2 次提交
    • P
      another set of cleanups · f565cf41
      Peter Eisentraut 提交于
      f565cf41
    • B
      Hi! · 0cb6bc70
      Bruce Momjian 提交于
      Here is a patch to bring both libpq and psql to a state where it compiles on
      win32 (native) again. A lot of things have changed, and I have not been able
      to keep up with them all, so it has been broken for quite a while.
      After this patch, at least it compiles. It also talks "basic talk" to the
      server, but I have not yet tested all things. Sending queries, and using
      e.g. \d or \dt works fine. The rest will have to be tested further.
      It also bumps the version on libpq.dll to 7.0.
      
      Everything should be enclosed in #ifdef WIN32, unless I have missed
      something. Except for one or maybe two places where I have moved a #include
      that should not be used on win32 from the "global area" into a "#ifndef
      WIN32 area".
      
      
      //Magnus
      0cb6bc70
  34. 17 1月, 2000 1 次提交
  35. 15 1月, 2000 2 次提交
  36. 14 1月, 2000 1 次提交
  37. 13 1月, 2000 1 次提交