mirror of
https://github.com/postgres/postgres.git
synced 2026-04-21 06:08:26 -04:00
This fixes various typos in docs and comments, and removes some orphaned definitions. Author: Alexander Lakhin Discussion: https://postgr.es/m/5da8e325-c665-da95-21e0-c8a99ea61fbf@gmail.com
16 lines
516 B
Text
16 lines
516 B
Text
test_rls_hooks is an example of how to use the hooks provided for RLS to
|
|
define additional policies to be used.
|
|
|
|
Functions
|
|
=========
|
|
test_rls_hooks_permissive(CmdType cmdtype, Relation relation)
|
|
RETURNS List*
|
|
|
|
Returns a list of policies which should be added to any existing
|
|
policies on the relation, combined with OR.
|
|
|
|
test_rls_hooks_restrictive(CmdType cmdtype, Relation relation)
|
|
RETURNS List*
|
|
|
|
Returns a list of policies which should be added to any existing
|
|
policies on the relation, combined with AND.
|