Add missing (set to nullptr?) c-tor arg

This commit is contained in:
Denis Glazachev 2021-03-29 14:48:41 +04:00
parent 7fd7a7114f
commit f98505c112

View File

@ -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");