mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Merge pull request #4530 from hczhcz/patch-1
Fix readBinary linkage error in Field.cpp
This commit is contained in:
commit
e64cf60236
@ -10,7 +10,7 @@
|
||||
|
||||
namespace DB
|
||||
{
|
||||
inline void readBinary(Array & x, ReadBuffer & buf)
|
||||
void readBinary(Array & x, ReadBuffer & buf)
|
||||
{
|
||||
size_t size;
|
||||
UInt8 type;
|
||||
@ -151,12 +151,8 @@ namespace DB
|
||||
DB::String res = applyVisitor(DB::FieldVisitorToString(), DB::Field(x));
|
||||
buf.write(res.data(), res.size());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
namespace DB
|
||||
{
|
||||
inline void readBinary(Tuple & x_def, ReadBuffer & buf)
|
||||
void readBinary(Tuple & x_def, ReadBuffer & buf)
|
||||
{
|
||||
auto & x = x_def.toUnderType();
|
||||
size_t size;
|
||||
|
Loading…
Reference in New Issue
Block a user