Files
postgres/src
Marc G. Fournier 7b30490bc9 First step done,
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;
1998-02-21 06:32:15 +00:00
..
1998-02-21 06:32:15 +00:00
1998-02-21 06:32:15 +00:00
1998-02-21 06:32:15 +00:00
1998-02-20 02:07:25 +00:00
1998-02-13 17:18:25 +00:00
1998-02-18 13:15:07 +00:00
1998-02-18 15:56:06 +00:00
1998-02-19 14:27:33 +00:00