github-actions[bot] commented on code in PR #17076:
URL: https://github.com/apache/doris/pull/17076#discussion_r1115462449
##########
be/src/vec/data_types/data_type_decimal.cpp:
##########
@@ -45,6 +47,10 @@ bool DataTypeDecimal<T>::equals(const IDataType& rhs) const {
template <typename T>
std::string DataTypeDecimal<T>::to_string(const IColumn& column, size_t
row_num) const {
+ if (typeid(column) == typeid(ColumnConst))
+ {
+ T value = column[0].to_string();
Review Comment:
warning: no member named 'to_string' in 'doris::vectorized::Field'
[clang-diagnostic-error]
```cpp
T value = column[0].to_string();
^
```
--
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]