Update src/IO/Lz4DeflatingWriteBuffer.cpp

Co-authored-by: Antonio Andelic <antonio2368@users.noreply.github.com>
This commit is contained in:
Sema Checherinda 2023-11-20 14:12:52 +01:00 committed by GitHub
parent ebb66c1a9e
commit fafd169e7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ namespace
using namespace DB;
/// SinkToOut provides the safe way to do direct write into buffer's memory
/// When out->capacity() is not less that guaranteed_capacity, SinkToOut is pointing directly to out_'s memory.
/// When out->capacity() is not less than guaranteed_capacity, SinkToOut is pointing directly to out_'s memory.
/// Otherwise the writes are directed to the temporary memory. That data is copied to out_ at finalize call.
class SinkToOut
{