mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-17 03:42:48 +00:00
13 lines
169 B
C++
13 lines
169 B
C++
#pragma once
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// Settings to be passed to IDisk::writeFile()
|
|
struct WriteSettings
|
|
{
|
|
bool enable_filesystem_cache_on_write_operations = false;
|
|
};
|
|
|
|
}
|