From d69757696721bb9486e524bc288300ad932174a7 Mon Sep 17 00:00:00 2001 From: Kseniia Sumarokova <54203879+kssenii@users.noreply.github.com> Date: Mon, 4 Apr 2022 17:53:01 +0200 Subject: [PATCH] Update ReadBufferFromS3.h --- src/IO/ReadBufferFromS3.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/IO/ReadBufferFromS3.h b/src/IO/ReadBufferFromS3.h index 0040ede6d6b..5282d9ad482 100644 --- a/src/IO/ReadBufferFromS3.h +++ b/src/IO/ReadBufferFromS3.h @@ -34,6 +34,7 @@ private: UInt64 max_single_read_retries; /// These variables are atomic because they can be used for `logging only` + /// (where it is not important to get consistent result) /// from separate thread other than the one which uses the buffer for s3 reading. std::atomic offset = 0; std::atomic read_until_position = 0;