Merge branch 'add_4_letter_words_commands' of github.com:JackyWoo/ClickHouse into JackyWoo_add_4_letter_words_commands

This commit is contained in:
alesapin 2021-11-18 23:18:12 +03:00
commit 04dba4c360

View File

@ -832,8 +832,8 @@ TEST_P(CoordinationTest, ChangelogTestLostFiles)
struct IntNode
{
int value;
IntNode(int value_) : value(value_) { }
uint64_t sizeInBytes() const { return sizeof value; }
IntNode(int value_) : value(value_) { } // NOLINT(google-explicit-constructor)
UInt64 sizeInBytes() const { return sizeof value; }
IntNode & operator=(int rhs)
{
this->value = rhs;