1. 14 3月, 2010 2 次提交
  2. 13 3月, 2010 10 次提交
  3. 12 3月, 2010 3 次提交
  4. 11 3月, 2010 5 次提交
  5. 10 3月, 2010 3 次提交
  6. 09 3月, 2010 4 次提交
  7. 08 3月, 2010 6 次提交
  8. 07 3月, 2010 1 次提交
    • T
      Fix warning messages in restrict_and_check_grant() to include the column name · 153012c7
      Tom Lane 提交于
      when warning about column-level privileges.  This is more useful than before
      and makes the apparent duplication complained of by Piyush Newe not so
      duplicate.  Also fix lack of quote marks in a related message text.
      
      Back-patch to 8.4, where column-level privileges were introduced.
      
      Stephen Frost
      153012c7
  9. 06 3月, 2010 2 次提交
    • M
      Add --psqlrc=FILENAME parameter to psql, to process an explicitly named · 66c2cc2b
      Magnus Hagander 提交于
      file instead of ~/.psqlrc on startup.
      66c2cc2b
    • T
      When reading pg_hba.conf and similar files, do not treat @file as an inclusion · b8b34b7b
      Tom Lane 提交于
      unless (1) the @ isn't quoted and (2) the filename isn't empty.  This guards
      against unexpectedly treating usernames or other strings in "flat files"
      as inclusion requests, as seen in a recent trouble report from Ed L.
      The empty-filename case would be guaranteed to misbehave anyway, because our
      subsequent path-munging behavior results in trying to read the directory
      containing the current input file.
      
      I think this might finally explain the report at
      http://archives.postgresql.org/pgsql-bugs/2004-05/msg00132.php
      of a crash after printing "authentication file token too long, skipping",
      since I was able to duplicate that message (though not a crash) on a
      platform where stdio doesn't refuse to read directories.  We never got
      far in investigating that problem, but now I'm suspicious that the trigger
      condition was an @ in the flat password file.
      
      Back-patch to all active branches since the problem can be demonstrated in all
      branches except HEAD.  The test case, creating a user named "@", doesn't cause
      a problem in HEAD since we got rid of the flat password file.  Nonetheless it
      seems like a good idea to not consider quoted @ as a file inclusion spec,
      so I changed HEAD too.
      b8b34b7b
  10. 05 3月, 2010 1 次提交
  11. 04 3月, 2010 3 次提交