diff --git a/dbms/src/Common/HashTable/HashTable.h b/dbms/src/Common/HashTable/HashTable.h index b78ce798ba2..2bbc0f6ad9e 100644 --- a/dbms/src/Common/HashTable/HashTable.h +++ b/dbms/src/Common/HashTable/HashTable.h @@ -142,7 +142,7 @@ struct HashTableCell /// Deserialization, in binary and text form. void read(DB::ReadBuffer & rb) { DB::readBinary(key, rb); } - void readText(DB::ReadBuffer & rb) { DB::writeDoubleQuoted(key, rb); } + void readText(DB::ReadBuffer & rb) { DB::readDoubleQuoted(key, rb); } };