Skip to content

Commit

Permalink
Update be/src/vec/data_types/serde/data_type_ipv6_serde.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
amorynan and github-actions[bot] authored Aug 13, 2024
1 parent ce9f922 commit a66cf53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/data_types/serde/data_type_ipv6_serde.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Status DataTypeIPv6SerDe::write_column_to_mysql(const IColumn& column,

void DataTypeIPv6SerDe::read_one_cell_from_jsonb(IColumn& column, const JsonbValue* arg) const {
IPv6 val = 0;
auto str_value = static_cast<const JsonbStringVal*>(arg);
const auto *str_value = static_cast<const JsonbStringVal*>(arg);
ReadBuffer rb(reinterpret_cast<const unsigned char*>(str_value->getBlob()),
str_value->getBlobLen());
if (!read_ipv6_text_impl(val, rb)) {
Expand Down

0 comments on commit a66cf53

Please sign in to comment.