Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BugFix] fix thrift compatibility issue with v3.3 (StarRocks#55214)
Browse files Browse the repository at this point in the history
Signed-off-by: tracymacding <[email protected]>
tracymacding authored Jan 17, 2025
1 parent 688a26d commit cbb7eb1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gensrc/thrift/PlanNodes.thrift
Original file line number Diff line number Diff line change
@@ -133,11 +133,11 @@ struct TInternalScanRange {
12: optional bool fill_data_cache = true;
// used for per-bucket compute optimize
13: optional i32 bucket_sequence
14: optional i64 gtid
// skip page cache when access page data
15: optional bool skip_page_cache = false;
14: optional bool skip_page_cache = false;
// skip local disk data cache when access page data
16: optional bool skip_disk_cache = false;
15: optional bool skip_disk_cache = false;
16: optional i64 gtid
}

enum TFileFormatType {

0 comments on commit cbb7eb1

Please sign in to comment.