Skip to content

Commit

Permalink
refactor: delete Int64ToString (4paradigm#2130)
Browse files Browse the repository at this point in the history
  • Loading branch information
PrajwalBorkar authored Jul 8, 2022
1 parent 88bd0ca commit 662f040
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/codec/codec.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

#include <map>
#include <memory>
#include <sstream>
#include <string>
#include <utility>
#include <vector>
Expand Down Expand Up @@ -238,13 +237,6 @@ int32_t GetStrCol(int8_t* input, int32_t str_field_offset, int32_t next_str_fiel
int32_t type_id, int8_t* data);
} // namespace v1

inline std::string Int64ToString(const int64_t key) {
std::stringstream ss;
ss << std::hex << key;
std::string key_str = ss.str();
return key_str;
}

} // namespace codec
} // namespace openmldb

Expand Down

0 comments on commit 662f040

Please sign in to comment.