1#pragma once
2
3
4namespace DB
5{
6
7enum class PartDestinationType
8{
9 DISK,
10 VOLUME,
11 DELETE,
12};
13
14}
15