Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BiteTheDDDDt committed Nov 21, 2024
1 parent ccd7a6e commit 9357678
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions be/src/vec/runtime/vdatetime_value.h
Original file line number Diff line number Diff line change
Expand Up @@ -1273,10 +1273,10 @@ class DateV2Value {
}
}

operator int32_t() const { return to_date_int_val(); }
operator uint32_t() const { return to_date_int_val(); }
operator int64_t() const { return to_int64(); }
operator uint64_t() const { return to_int64(); }
operator int32_t() const { return int_val_; }
operator uint32_t() const { return int_val_; }
operator int64_t() const { return int_val_; }
operator uint64_t() const { return int_val_; }

int64_t to_int64() const {
if constexpr (is_datetime) {
Expand Down

0 comments on commit 9357678

Please sign in to comment.