是否可以为 postgresql 视图创建行级安全策略?

Is possible to create row level security policy for a postgresql view?

我们需要为 **PostgreSQL 视图 ** 实施行级安全策略。有什么选择吗?

谢谢

CREATE VIEW
  view_own_log
AS SELECT
  these,
  fields,
  only
FROM
  restricted_log_table
WHERE
  username=user;

user 是登录用户。

如果需要,您可以创建更复杂的 WHERE 子句。将 table 访问权限限制在最低限度,并使用 GRANT 授予对视图的访问权限。