mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Update MsgPack input format.
This commit is contained in:
parent
9860ffee51
commit
e46322fcef
@ -119,8 +119,8 @@ void MsgPackRowInputFormat::insertObject(IColumn & column, DataTypePtr data_type
|
||||
case TypeIndex::FixedString: [[fallthrough]];
|
||||
case TypeIndex::String:
|
||||
{
|
||||
String str = object.as<String>();
|
||||
column.insertData(str.data(), str.size());
|
||||
msgpack::object_str obj_str = object.via.str;
|
||||
column.insertData(obj_str.ptr, obj_str.size);
|
||||
return;
|
||||
}
|
||||
case TypeIndex::Array:
|
||||
|
Loading…
Reference in New Issue
Block a user