Fix resetParser in MsgPack format

This commit is contained in:
Kruglov Pavel 2021-12-10 21:37:08 +03:00 committed by GitHub
parent 1be84d80d4
commit 764e205d36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ MsgPackRowInputFormat::MsgPackRowInputFormat(const Block & header_, std::unique_
void MsgPackRowInputFormat::resetParser()
{
IRowInputFormat::resetParser();
buf.reset();
buf->reset();
visitor.reset();
}