Skip to content

Commit

Permalink
Update src/base/value_schema_manager.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
acelyc111 authored Jun 1, 2021
1 parent a33d394 commit 3269b25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/base/value_schema_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ value_schema *value_schema_manager::get_value_schema(uint32_t meta_cf_data_versi
// first bit = 1 means the data version is >= VERSION_2
if (first_byte & 0x80) {
// In order to keep backward compatibility, we should return latest version if the data
// version in value is not found. In other words, it will works well in future version if it
// version in value is not found. In other words, it will work well in future version if it
// is compatible with latest version in current
auto schema = get_value_schema(first_byte & 0x7F);
if (nullptr == schema) {
Expand Down

0 comments on commit 3269b25

Please sign in to comment.