mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 20:32:43 +00:00
16 lines
128 B
C++
16 lines
128 B
C++
![]() |
#pragma once
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Mode of opening a file for write.
|
||
|
*/
|
||
|
enum class WriteMode
|
||
|
{
|
||
|
Rewrite,
|
||
|
Append
|
||
|
};
|
||
|
|
||
|
}
|