mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
43 lines
834 B
C++
43 lines
834 B
C++
#pragma once
|
|
|
|
#include <Common/RWLock.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Structs that hold table structure (columns, their types, default values etc.) locks when executing queries.
|
|
/// See IStorage::lock* methods for comments.
|
|
|
|
struct TableStructureWriteLockHolder
|
|
{
|
|
void release()
|
|
{
|
|
*this = TableStructureWriteLockHolder();
|
|
}
|
|
|
|
private:
|
|
friend class IStorage;
|
|
|
|
/// Order is important.
|
|
RWLockImpl::LockHolder alter_intention_lock;
|
|
RWLockImpl::LockHolder new_data_structure_lock;
|
|
RWLockImpl::LockHolder structure_lock;
|
|
};
|
|
|
|
struct TableStructureReadLockHolder
|
|
{
|
|
void release()
|
|
{
|
|
*this = TableStructureReadLockHolder();
|
|
}
|
|
|
|
private:
|
|
friend class IStorage;
|
|
|
|
/// Order is important.
|
|
RWLockImpl::LockHolder new_data_structure_lock;
|
|
RWLockImpl::LockHolder structure_lock;
|
|
};
|
|
|
|
}
|