[Fix](function) Fix unix_timestamp core for string input (#32871)

This commit is contained in:
zclllyybb
2024-03-27 11:19:03 +08:00
committed by yiguolei
parent b5b0181a79
commit 2a0644f442
4 changed files with 64 additions and 6 deletions

View File

@ -3265,7 +3265,7 @@ bool DateV2Value<T>::unix_timestamp(std::pair<int64_t, int64_t>* timestamp,
ctz);
timestamp->first = tp.time_since_epoch().count();
timestamp->second = date_v2_value_.microsecond_;
} else {
} else { // just make compiler happy
}
return true;
}