fixed style

This commit is contained in:
koloshmet 2023-02-13 13:41:10 +02:00 committed by Michael Kolupaev
parent 4305457883
commit 238741dafe
8 changed files with 13 additions and 13 deletions

View File

@ -1,4 +1,4 @@
#pragma once
#pragma once
#include <Parsers/IAST.h>

View File

@ -6,7 +6,7 @@ namespace DB
{
/// Concurrent primitive for dependency completeness registration
/// When arrive methods return true, dependant task must be executed (or scheduled)
/// When arrive methods return true, dependent task must be executed (or scheduled)
class RefreshAllCombiner
{
public:

View File

@ -12,7 +12,7 @@ namespace DB
class RefreshTask;
/// Concurrent primitive for managing list of dependant task and notifying them
/// Concurrent primitive for managing list of dependent task and notifying them
class RefreshDependencies
{
using Container = std::list<RefreshTaskObserver>;

View File

@ -1,6 +1,11 @@
#include <Storages/MaterializedView/RefreshSet.h>
#include <Storages/MaterializedView/RefreshTask.h>
namespace CurrentMetrics
{
extern const Metric Refresh;
}
namespace DB
{

View File

@ -6,11 +6,6 @@
#include <Common/CurrentMetrics.h>
namespace CurrentMetrics
{
extern const Metric Refresh;
}
namespace DB
{

View File

@ -66,7 +66,7 @@ public:
/// Resume task execution
void resume();
/// Notify dependant task
/// Notify dependent task
void notify(const StorageID & parent_id);
private: