1. 21 2月, 1998 3 次提交
    • M
      First step done, · 7b30490b
      Marc G. Fournier 提交于
          below  is  the patch to have views to override the permission
          checks for the accessed tables. Now we can do the following:
      
          CREATE VIEW db_user AS SELECT
               usename,
               usesysid,
               usecreatedb,
               usetrace,
               usecatupd,
               '**********'::text as passwd,
               valuntil
              FROM pg_user;
      
          REVOKE ALL ON pg_user FROM public;
          REVOKE ALL ON db_user FROM public;
          GRANT SELECT ON db_user TO public;
      7b30490b
    • E
      1.7.01.7.0 · 73432884
      Edmund Mergl 提交于
      73432884
    • E
      1.7.0 · 30b9b529
      Edmund Mergl 提交于
      30b9b529
  2. 20 2月, 1998 7 次提交
  3. 19 2月, 1998 2 次提交
  4. 18 2月, 1998 4 次提交
  5. 17 2月, 1998 2 次提交
  6. 13 2月, 1998 3 次提交
  7. 12 2月, 1998 6 次提交
  8. 11 2月, 1998 5 次提交
  9. 09 2月, 1998 2 次提交
    • M
      From: Peter T Mount <patches@maidast.demon.co.uk> · 2535fcde
      Marc G. Fournier 提交于
      This patch fixes the following:
      
      * Fixes minor bug found in DatabaseMetaData.getTables() where it doesn't
        handle default table types.
      * It now reports an error if the client opens a database using
        properties, and either the user or password properties are missing. This
        should make the recent problem with Servlets easier to find.
      * Commented out obsolete property in Driver.getPropertyInfo()
      2535fcde
    • M
      This was a new class that was introduced last weekend. I'm attaching the · 83e637a9
      Marc G. Fournier 提交于
      source here. It goes in the src/interfaces/jdbc/postgresql/util directory
      
      Marc, can you make sure this is in the distribution, Thanks
      83e637a9
  10. 06 2月, 1998 1 次提交
  11. 05 2月, 1998 1 次提交
    • M
      From: Michael Meskes <meskes@topsystem.de> · 82034103
      Marc G. Fournier 提交于
      Well this is not really a patch. But I mananged to get Linus' old Postgres95
      precompiler to compile and work with PostgreSQL. The next step would be to
      collect bug/missing feature reports and to put it into the distribution so
      that it is made with the standard make procedure.
      
      Warning! So far it is not tested much and it does not install correctly. But
      I was able to create a small binary with it.
      82034103
  12. 02 2月, 1998 1 次提交
    • M
      From: Peter T Mount <patches@maidast.demon.co.uk> · 4e9dd952
      Marc G. Fournier 提交于
      [This is a repost - it supercedes the previous one. It fixes the patch so
      it doesn't bread aix port, plus there's a file missing out of the
      original post because difforig doesn't pick up new files. It's now
      attached. peter]
      
      This patch brings the JDBC driver up to the current protocol spec.
      Basically, the backend now tells the driver what authentication scheme to
      use.
      
      The patch also fixes a performance problem with large objects. In the
      buffer manager, each fastpath call was sending multiple Notifications to
      the backend (sometimes more data in the form of notifications were being
      sent than blob data!).
      4e9dd952
  13. 01 2月, 1998 1 次提交
    • M
      From: Phil Thompson <phil@river-bank.demon.co.uk> · 7a335784
      Marc G. Fournier 提交于
      I haven't had final confirmation from Peter yet, but the attached patch
      needs to be applied for the Beta otherwise password and crypt
      authentication just won't work.
      
      It puts back the loop in libpq and also fixes a couple of problems with
      maintaining compatability with pre-6.3 drivers.
      7a335784
  14. 29 1月, 1998 1 次提交
    • M
      From: Phil Thompson <phil@river-bank.demon.co.uk> · 8e789e8e
      Marc G. Fournier 提交于
      Attached is the patch to fix the warning messages from my code.  I also
      fixed one which wasn't my code.  Apart from the usual warnings about the
      bison/yacc generated code I only have one other warning message.  This
      is in gramm.y around line 2234.  I wasn't sure of the fix.
      
      I've also replaced all the calls to free() in gramm.y to calls to
      pfree().  Without these I was getting backend crashes with GRANT.  This
      might already have been fixed.
      8e789e8e
  15. 28 1月, 1998 1 次提交
    • M
      From: Peter T Mount <patches@maidast.demon.co.uk> · 8a02b22e
      Marc G. Fournier 提交于
      This has a problem when using any authentication other than trust or
      ident.
      
      Anything using libpq will hang, because the client will go into a loop
      while connecting. The following patch simply comments out two lines (a do
      and a while), removing the loop. Going through the new scheme, I can't see
      why this do..while loop is in there.
      8a02b22e