I'm using regex to make some searches on strings with ClickHouse and as the docs say here
Note that the backslash symbol () is used for escaping in the regular expression. The same symbol is used for escaping in string literals. So in order to escape the symbol in a regular expression, you must write two backslashes () in a string literal.
Is it a way to tell ClickHouse to parse a string like a raw string, so that I don't have to use double backslashes in all patterns? Something like doing r'...'
in Python?