Fix tests

This commit is contained in:
Anton Ivashkin 2022-08-18 11:43:50 +03:00
parent dd596121b8
commit 7627f831cd
2 changed files with 14 additions and 14 deletions

View File

@ -6,7 +6,7 @@
#include <Common/logger_useful.h>
/**
* When ClickHouse has frozen data on remote storage it requred 'smart' data removing during UNFREEZE.
* When ClickHouse has frozen data on remote storage it required 'smart' data removing during UNFREEZE.
* For remote storage actually frozen not remote data but local metadata with referrers on remote data.
* So remote data can be referred from working and frozen data sets (or two frozen) at same time.
* In this case during UNFREEZE ClickHouse should remove only local metadata and keep remote data.
@ -20,10 +20,6 @@
namespace DB
{
namespace ErrorCodes
{
extern const int INVALID_PARTITION_VALUE;
}
void FreezeMetaData::fill(const StorageReplicatedMergeTree & storage)
{
@ -114,6 +110,17 @@ String FreezeMetaData::getFileName(const String & path)
return fs::path(path) / "frozen_metadata.txt";
}
Unfreezer::Unfreezer(ContextPtr context) : local_context(context), zookeeper()
{
const auto & config = local_context->getConfigRef();
static constexpr auto config_key = "enable_system_unfreeze";
if (!config.getBool(config_key, false)) {
throw Exception(ErrorCodes::SUPPORT_IS_DISABLED, "Support for SYSTEM UNFREEZE query is disabled. You can enable it via '{}' server setting", config_key);
}
if (local_context->hasZooKeeper())
zookeeper = local_context->getZooKeeper();
}
BlockIO Unfreezer::unfreeze(const String & backup_name)
{
LOG_DEBUG(log, "Unfreezing backup {}", escapeForFileName(backup_name));

View File

@ -36,14 +36,7 @@ public:
class Unfreezer
{
public:
Unfreezer(ContextPtr context) : local_context(context), zookeeper() {
const auto & config = local_context->getConfigRef();
static constexpr auto config_key = "enable_system_unfreeze";
if (!config.getBool(config_key, false)) {
throw Exception(ErrorCodes::SUPPORT_IS_DISABLED, "Support for SYSTEM UNFREEZE query is disabled. You can enable it via '{}' server setting", config_key);
}
zookeeper = this->local_context->getZooKeeper();
}
Unfreezer(ContextPtr context);
PartitionCommandsResultInfo unfreezePartitionsFromTableDirectory(MergeTreeData::MatcherFn matcher, const String & backup_name, const Disks & disks, const fs::path & table_directory);
BlockIO unfreeze(const String & backup_name);
private: