github-actions[bot] commented on code in PR #39258:
URL: https://github.com/apache/doris/pull/39258#discussion_r1714007652


##########
be/src/vec/data_types/serde/data_type_ipv6_serde.cpp:
##########
@@ -68,6 +68,25 @@ Status DataTypeIPv6SerDe::write_column_to_mysql(const 
IColumn& column,
     return _write_column_to_mysql(column, row_buffer, row_idx, col_const, 
options);
 }
 
+void DataTypeIPv6SerDe::read_one_cell_from_jsonb(IColumn& column, const 
JsonbValue* arg) const {
+    IPv6 val = 0;
+    auto str_value = static_cast<const JsonbStringVal*>(arg);

Review Comment:
   warning: 'auto str_value' can be declared as 'const auto *str_value' 
[readability-qualified-auto]
   
   ```suggestion
       const auto *str_value = static_cast<const JsonbStringVal*>(arg);
   ```
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to