ClickHouse/src/Storages/RenamingRestrictions.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
124 B
C++
Raw Normal View History

2022-12-22 13:31:42 +00:00
#pragma once
namespace DB
{
enum RenamingRestrictions
{
ALLOW_ANY,
ALLOW_PRESERVING_UUID,
DO_NOT_ALLOW,
};
}