Merge pull request #3807 from amosbird/nitfix

Fix copy-paste error.
This commit is contained in:
alexey-milovidov 2018-12-10 20:52:08 +03:00 committed by GitHub
commit 3be02d5214
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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