mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Move code from header into source file
This commit is contained in:
parent
e6354a9859
commit
60d45f5495
@ -274,6 +274,11 @@ bool CachedOnDiskReadBufferFromFile::canStartFromCache(size_t current_offset, co
|
||||
return current_write_offset > current_offset;
|
||||
}
|
||||
|
||||
String CachedOnDiskReadBufferFromFile::toString(ReadType type)
|
||||
{
|
||||
return String(magic_enum::enum_name(type));
|
||||
}
|
||||
|
||||
CachedOnDiskReadBufferFromFile::ImplementationBufferPtr
|
||||
CachedOnDiskReadBufferFromFile::getReadBufferForFileSegment(FileSegment & file_segment)
|
||||
{
|
||||
|
@ -129,7 +129,7 @@ private:
|
||||
|
||||
ReadType read_type = ReadType::REMOTE_FS_READ_BYPASS_CACHE;
|
||||
|
||||
static String toString(ReadType type) { return String(magic_enum::enum_name(type)); }
|
||||
static String toString(ReadType type);
|
||||
|
||||
size_t first_offset = 0;
|
||||
String nextimpl_step_log_info;
|
||||
|
Loading…
Reference in New Issue
Block a user