On Mon, Jul 14, 2014 at 2:23 AM, sumita <suday@xxxxxxxxx> wrote:
Does postgresql support the use of security labels or sensitivity markings?
If what you want is some kind of row-level security, you have to roll your own when using PostgreSQL. Security_barrier views are a good option for this. See:
PostgreSQL 9.4 (out in a couple months) will be enhancing security_barrier views, so they will also be updatable without requiring the use of triggers.
Geoff