From e90124dc24e795c953c8416323fbd7461d62e4ac Mon Sep 17 00:00:00 2001 From: alexey-milovidov Date: Wed, 19 Feb 2020 11:54:23 +0300 Subject: [PATCH] Update ProfileEvents.cpp --- dbms/src/Common/ProfileEvents.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dbms/src/Common/ProfileEvents.cpp b/dbms/src/Common/ProfileEvents.cpp index 85411f4a6fc..0646cb71ef3 100644 --- a/dbms/src/Common/ProfileEvents.cpp +++ b/dbms/src/Common/ProfileEvents.cpp @@ -20,9 +20,9 @@ M(ReadBufferAIOReadBytes, "") \ M(WriteBufferAIOWrite, "") \ M(WriteBufferAIOWriteBytes, "") \ - M(ReadCompressedBytes, "Number of bytes read from compressed sources (files or over a network).") \ - M(CompressedReadBufferBlocks, "Number of blocks read from compressed sources (files or over a network).") \ - M(CompressedReadBufferBytes, "Number of uncompressed bytes read from compressed sources (files or over a network).") \ + M(ReadCompressedBytes, "Number of bytes (the number of bytes before decompression) read from compressed sources (files, network).") \ + M(CompressedReadBufferBlocks, "Number of compressed blocks (the blocks of data that are compressed independent of each other) read from compressed sources (files, network).") \ + M(CompressedReadBufferBytes, "Number of uncompressed bytes (the number of bytes after decompression) read from compressed sources (files, network).") \ M(UncompressedCacheHits, "") \ M(UncompressedCacheMisses, "") \ M(UncompressedCacheWeightLost, "") \