mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 11:52:27 +00:00
15 lines
421 B
C++
15 lines
421 B
C++
|
#pragma once
|
||
|
#include <base/types.h>
|
||
|
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
/// Removes a password or its hash from a query if it's specified there or replaces it with some placeholder.
|
||
|
/// This function is used to prepare a query for storing in logs (we don't want logs to contain sensitive information).
|
||
|
/// The function changes only following types of queries:
|
||
|
/// CREATE/ALTER USER.
|
||
|
String wipePasswordFromQuery(const String & query);
|
||
|
|
||
|
}
|