v.22.4New Feature

Add Simple Row Policies to ClickHouse

Add a new kind of row policies named simple. Before this PR we had two kinds or row policies: permissive and restrictive. A simple row policy adds a new filter on a table without any side-effects like it was for permissive and restrictive policies. #35345 (Vitaly Baranov).
Introduces a new kind of row policy named simple in ClickHouse, complementing the existing permissive and restrictive policies.

Why it matters

The simple row policy provides a way to add a filter on a table without any side effects, unlike the permissive and restrictive policies. This allows more straightforward and predictable row-level filtering behavior.

How to use it

Define a row policy with the kind set to simple. This policy will apply a filter on the table without altering row visibility in side-effect ways, simplifying access control configuration.