ClickHouse/src/Interpreters/formatWithPossiblyHidingSecrets.h

25 lines
773 B
C++
Raw Normal View History

2023-02-17 10:36:58 +00:00
#pragma once
#include "Access/ContextAccess.h"
#include "Interpreters/Context.h"
namespace DB
{
struct SecretHidingFormatSettings
{
// We can't store const Context& as there's a dangerous usage {.ctx = *getContext()}
// which is UB in case getContext()'s return ptr is the only one holding the object
const ContextPtr & ctx;
const IAST & query;
size_t max_length = 0;
bool one_line = true;
};
inline String format(const SecretHidingFormatSettings & settings)
{
const bool show_secrets = settings.ctx->displaySecretsInShowSelect()
2023-02-17 10:36:58 +00:00
&& settings.ctx->getAccess()->isGranted(AccessType::displaySecretsInShowSelect);
return settings.query.formatWithPossiblyHidingSensitiveData(settings.max_length, settings.one_line, show_secrets);
}
}