Small fix

This commit is contained in:
kssenii 2021-10-02 17:28:12 +03:00
parent 7ff092712b
commit 1146035f11
3 changed files with 5 additions and 4 deletions

View File

@ -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 ->

View File

@ -79,9 +79,6 @@ bool ReadIndirectBufferFromRemoteFS::nextImpl()
/// and assigned to current buffer.
swap(*impl);
if (result)
impl->absolute_position += working_buffer.size();
return result;
}

View File

@ -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
{