1. 19 3月, 1997 12 次提交
  2. 18 3月, 1997 2 次提交
  3. 17 3月, 1997 4 次提交
  4. 16 3月, 1997 5 次提交
  5. 15 3月, 1997 8 次提交
  6. 14 3月, 1997 3 次提交
  7. 13 3月, 1997 6 次提交
    • M
      From: Dan McGuirk <mcguirk@indirect.com> · 071484c5
      Marc G. Fournier 提交于
      Subject: [HACKERS] timestamp type
      
      OK, last one.  This patch adds an ANSI SQL 'timestamp' type.
      071484c5
    • M
      From: Dan McGuirk <mcguirk@indirect.com> · 3a7c93e7
      Marc G. Fournier 提交于
      Subject: [HACKERS] password authentication
      
      This patch adds support for plaintext password authentication.  To use
      it, you add a line like
      
      host         all         0.0.0.0       0.0.0.0           password  pg_pwd.conf
      
      
      to your pg_hba.conf, where 'pg_pwd.conf' is the name of a file containing
      the usernames and password hashes in the format of the first two fields
      of a Unix /etc/passwd file.  (Of course, you can use a specific database
      name or IP instead.)
      
      Then, to connect with a password through libpq, you use the PQconnectdb()
      function, specifying the "password=" tag in the connect string and also
      adding the tag "authtype=password".
      
      I also added a command-line switch '-u' to psql that tells it to prompt
      for a username and password and use password authentication.
      3a7c93e7
    • M
      From: Dan McGuirk <mcguirk@indirect.com> · 5dde558c
      Marc G. Fournier 提交于
      Subject: [HACKERS] linux/alpha patches
      
      These patches lay the groundwork for a Linux/Alpha port.  The port doesn't
      actually work unless you tweak the linker to put all the pointers in the
      first 32 bits of the address space, but it's at least a start.  It
      implements the test-and-set instruction in Alpha assembly, and also fixes
      a lot of pointer-to-integer conversions, which is probably good anyway.
      5dde558c
    • M
      From: Dan McGuirk <mcguirk@indirect.com> · b66569e4
      Marc G. Fournier 提交于
      Subject: [HACKERS] linux/alpha patches
      
      These patches lay the groundwork for a Linux/Alpha port.  The port doesn't
      actually work unless you tweak the linker to put all the pointers in the
      first 32 bits of the address space, but it's at least a start.  It
      implements the test-and-set instruction in Alpha assembly, and also fixes
      a lot of pointer-to-integer conversions, which is probably good anyway.
      b66569e4
    • M
      From: Dan McGuirk <mcguirk@indirect.com> · 12782697
      Marc G. Fournier 提交于
      Subject: [HACKERS] equal column and table name patch
      
      This fixes a bug where selects fail when there is a column with the same
      name as the table it's a part of.
      12782697
    • M
      From: Dan McGuirk <mcguirk@indirect.com> · e4949f9f
      Marc G. Fournier 提交于
      Subject: [HACKERS] better access control error messages
      
      This patch replaces the 'no such class or insufficient privilege' with
      distinct error messages that tell you whether the table really doesn't
      exist or whether access was denied.
      e4949f9f