ClickHouse/src/Parsers/wipePasswordFromQuery.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
421 B
C++
Raw Normal View History

2022-09-19 00:02:09 +00:00
#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);
}