mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
Small fix
This commit is contained in:
parent
7ff092712b
commit
1146035f11
@ -16,6 +16,7 @@ namespace DB
|
||||
|
||||
/**
|
||||
* Reads data from S3/HDFS/Web using stored paths in metadata.
|
||||
* This class is an asynchronous version of ReadIndirectBufferFromRemoteFS.
|
||||
*
|
||||
* Buffers chain for diskS3:
|
||||
* AsynchronousIndirectReadBufferFromRemoteFS -> ReadBufferFromRemoteFS ->
|
||||
|
@ -79,9 +79,6 @@ bool ReadIndirectBufferFromRemoteFS::nextImpl()
|
||||
/// and assigned to current buffer.
|
||||
swap(*impl);
|
||||
|
||||
if (result)
|
||||
impl->absolute_position += working_buffer.size();
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
@ -14,7 +14,10 @@ namespace DB
|
||||
|
||||
class ReadBufferFromRemoteFSGather;
|
||||
|
||||
/// Reads data from S3/HDFS/Web using stored paths in metadata.
|
||||
/**
|
||||
* Reads data from S3/HDFS/Web using stored paths in metadata.
|
||||
* There is asynchronous version of this class -- AsynchronousReadIndirectBufferFromRemoteFS.
|
||||
*/
|
||||
class ReadIndirectBufferFromRemoteFS : public ReadBufferFromFileBase
|
||||
{
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user