-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
85524: sql: add join types and algorithms to telemetry logging r=rytaft a=rytaft This commit adds several new fields to the `SampledQuery` structure used for telemetry logging. Closes #85425 Release note (sql change): The structured payloads used for telemetry logs now include the following new fields: `InnerJoinCount`: The number of inner joins in the query plan. `LeftOuterJoinCount`: The number of left (or right) outer joins in the query plan. `FullOuterJoinCount`: The number of full outer joins in the query plan. `SemiJoinCount`: The number of semi joins in the query plan. `AntiJoinCount`: The number of anti joins in the query plan. `IntersectAllJoinCount`: The number of intersect all joins in the query plan. `ExceptAllJoinCount`: The number of except all joins in the query plan. `HashJoinCount`: The number of hash joins in the query plan. `CrossJoinCount`: The number of cross joins in the query plan. `IndexJoinCount`: The number of index joins in the query plan. `LookupJoinCount`: The number of lookup joins in the query plan. `MergeJoinCount`: The number of merge joins in the query plan. `InvertedJoinCount`: The number of inverted joins in the query plan. `ApplyJoinCount`: The number of apply joins in the query plan. `ZigZagJoinCount`: The number of zig zag joins in the query plan. Co-authored-by: Rebecca Taft <[email protected]>
- Loading branch information
Showing
10 changed files
with
550 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.