From f6604fdf1ab2e8002ab72bee0d63286b2060098d Mon Sep 17 00:00:00 2001 From: Nikita Mikhaylov Date: Tue, 26 Nov 2019 20:04:46 +0300 Subject: [PATCH] fix build --- dbms/src/IO/ReadHelpers.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dbms/src/IO/ReadHelpers.h b/dbms/src/IO/ReadHelpers.h index d829839e1a..d0fdca24d7 100644 --- a/dbms/src/IO/ReadHelpers.h +++ b/dbms/src/IO/ReadHelpers.h @@ -926,9 +926,6 @@ return std::make_unique(args...); /** This function just copies the data from buffer's internal position (in.position()) * to current position (from arguments) into memory. - * @param buf - original buffer to read from. - * memory - where to put data from buf - * current - defines the upper bound of copyble data. */ void saveUpToPosition(ReadBuffer & in, DB::Memory<> & memory, char * current); @@ -938,9 +935,6 @@ void saveUpToPosition(ReadBuffer & in, DB::Memory<> & memory, char * current); * Why we have to use this strange function? Consider we have buffer's internal position in the middle * of our buffer and the current cursor in the end of the buffer. When we call eof() it calls next(). * And this function can fill the buffer with new data, so we will lose the data from previous buffer state. - * @param buf - original buffer to read from. - * memory - where to put data from buf - * current - defines the upper bound of copyble data. */ bool loadAtPosition(ReadBuffer & in, DB::Memory<> & memory, char * & current); -- GitLab