mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-13 01:41:59 +00:00
14 lines
124 B
C++
14 lines
124 B
C++
#pragma once
|
|
|
|
namespace DB
|
|
{
|
|
|
|
enum RenamingRestrictions
|
|
{
|
|
ALLOW_ANY,
|
|
ALLOW_PRESERVING_UUID,
|
|
DO_NOT_ALLOW,
|
|
};
|
|
|
|
}
|