mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
20 lines
652 B
XML
20 lines
652 B
XML
<?xml version="1.0"?>
|
|
<!-- Config for test server -->
|
|
<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>
|
|
<!-- This rule is used in tests. -->
|
|
<rule>
|
|
<regexp>TOPSECRET.TOPSECRET</regexp>
|
|
<replace>[hidden]</replace>
|
|
</rule>
|
|
</query_masking_rules>
|
|
</yandex>
|