-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[Chore](build) fix conflict field id #60743
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -425,14 +425,15 @@ struct TQueryOptions { | |
| 184: optional i32 cte_max_recursion_depth; | ||
|
|
||
| 185: optional bool enable_parquet_file_page_cache = true; | ||
| 186: optional bool enable_aggregate_function_null_v2 = false; | ||
|
|
||
| 186: optional bool enable_streaming_agg_hash_join_force_passthrough; | ||
|
|
||
| 187: optional bool enable_distinct_streaming_agg_force_passthrough; | ||
|
|
||
| 188: optional bool enable_broadcast_join_force_passthrough; | ||
|
|
||
| 189: optional bool enable_aggregate_function_null_v2 = false; | ||
|
Comment on lines
429
to
+435
|
||
|
|
||
| 195: optional bool enable_left_semi_direct_return_opt; | ||
|
|
||
| 200: optional bool enable_adjust_conjunct_order_by_cost; | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change does more than reorder fields: it changes the Thrift field id for
enable_aggregate_function_null_v2from 186 to 189. That alters the wire serialization contract, so the PR description claiming “no functionality is affected” is inaccurate; please update the description (and release notes if required) to reflect the compatibility impact and rationale for picking the new id.