From f98505c11267ebe94b14b1f9c0d49b7aa2a0657a Mon Sep 17 00:00:00 2001 From: Denis Glazachev Date: Mon, 29 Mar 2021 14:48:41 +0400 Subject: [PATCH] Add missing (set to nullptr?) c-tor arg --- utils/check-marks/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/check-marks/main.cpp b/utils/check-marks/main.cpp index 2b244dcf0b6..e9e0bbf1134 100644 --- a/utils/check-marks/main.cpp +++ b/utils/check-marks/main.cpp @@ -19,7 +19,7 @@ static void checkByCompressedReadBuffer(const std::string & mrk_path, const std::string & bin_path) { DB::ReadBufferFromFile mrk_in(mrk_path); - DB::CompressedReadBufferFromFile bin_in(bin_path, 0, 0, 0); + DB::CompressedReadBufferFromFile bin_in(bin_path, 0, 0, 0, nullptr); DB::WriteBufferFromFileDescriptor out(STDOUT_FILENO); bool mrk2_format = boost::algorithm::ends_with(mrk_path, ".mrk2");