ClickHouse/dbms/programs/server/config.d/query_masking.xml

13 lines
433 B
XML
Raw Normal View History

<yandex>
<query_masking_rules>
<!-- An example of query masking rule to remove profanity.
This is an example for developers. Practical examples will include something like masking of SSN or credit card numbers.
-->
<rule>
<name>profanity</name>
<regexp>(?i:shit)</regexp>
<replace>substance</replace>
</rule>
</query_masking_rules>
</yandex>