Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
yiguolei committed Nov 21, 2024
1 parent 91d17f8 commit 2b01a02
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions be/src/vec/runtime/vdatetime_value.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1165,6 +1165,10 @@ static int min(int a, int b) {
return a < b ? a : b;
}

static size_t min(size_t a, size_t b) {
return a < b ? a : b;
}

static int find_in_lib(const char* lib[], const char* str, const char* end) {
int pos = 0;
int find_count = 0;
Expand Down

0 comments on commit 2b01a02

Please sign in to comment.