mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
25 lines
428 B
C++
25 lines
428 B
C++
#pragma once
|
|
|
|
#include <Common/RWLock.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
using TableLockHolder = RWLockImpl::LockHolder;
|
|
|
|
/// Table exclusive lock, holds both alter and drop locks. Useful for DROP-like
|
|
/// queries.
|
|
struct TableExclusiveLockHolder
|
|
{
|
|
void release() { *this = TableExclusiveLockHolder(); }
|
|
|
|
private:
|
|
friend class IStorage;
|
|
|
|
/// Order is important.
|
|
TableLockHolder alter_lock;
|
|
TableLockHolder drop_lock;
|
|
};
|
|
|
|
}
|