Skip to content

Commit

Permalink
remove default value
Browse files Browse the repository at this point in the history
  • Loading branch information
bobhan1 committed Dec 19, 2024
1 parent fb26bf6 commit d23c307
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gensrc/proto/olap_file.proto
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ message RowsetMetaPB {
optional SegmentsOverlapPB segments_overlap_pb = 51 [default = OVERLAP_UNKNOWN];
optional int64 compaction_level = 52 [default = 0];
// indicate that whether the segments key bounds is truncated
optional bool segments_key_bounds_truncated = 53 [default = false];
optional bool segments_key_bounds_truncated = 53;

// For cloud
// for data recycling
Expand Down Expand Up @@ -208,7 +208,7 @@ message RowsetMetaCloudPB {
optional SegmentsOverlapPB segments_overlap_pb = 51 [default = OVERLAP_UNKNOWN];
reserved 52;
// indicate that whether the segments key bounds is truncated
optional bool segments_key_bounds_truncated = 53 [default = false];
optional bool segments_key_bounds_truncated = 53;

// cloud
// the field is a vector, rename it
Expand Down

0 comments on commit d23c307

Please sign in to comment.