Re: [HACKERS] Here it is - view permissions - Mailing list pgsql-hackers

From The Hermit Hacker
Subject Re: [HACKERS] Here it is - view permissions
Date
Msg-id Pine.BSF.3.96.980223231732.230C-100000@thelab.hub.org
Whole thread Raw
In response to Here it is - view permissions  (jwieck@debis.com (Jan Wieck))
Responses Re: [PATCHES] Re: [HACKERS] Here it is - view permissions
List pgsql-hackers
On Fri, 20 Feb 1998, Jan Wieck wrote:

> 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;

    I used the rewrite RULE here, instead of the above VIEW, with the
VIEW being merely a 'SELECT * FROM pg_user'...by using the RULE (unless
I'm mistaken?), if we change pg_user (ie. add another field at some later
date), the view itself shouldn't require a change...



pgsql-hackers by date:

Previous
From: "Thomas G. Lockhart"
Date:
Subject: Re: [HACKERS] regression: select_views.sql
Next
From: The Hermit Hacker
Date:
Subject: Re: [HACKERS] Re: Appended a string of text to each line in a file