1. 21 2月, 1998 1 次提交
    • 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
  2. 18 2月, 1998 1 次提交
  3. 12 2月, 1998 1 次提交
  4. 11 2月, 1998 2 次提交
  5. 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