-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Include information on whether a query is using SSQE or MSQE in QueryLogger #14938
base: master
Are you sure you want to change the base?
Conversation
@@ -255,6 +257,12 @@ void doFormat(StringBuilder builder, QueryLogger logger, QueryLogParams params) | |||
builder.append(CommonConstants.UNKNOWN); | |||
} | |||
} | |||
}, | |||
IS_MULTI_STAGE_QUERY_ENGINE("isMultiStageQueryEngine") { |
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.
Alternatively, we could call this queryEngine
with possible options being singleStage
/ multiStage
so that it is open to future extensions.
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.
I like that idea
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #14938 +/- ##
============================================
+ Coverage 61.75% 63.70% +1.94%
- Complexity 207 1472 +1265
============================================
Files 2436 2710 +274
Lines 133233 151931 +18698
Branches 20636 23462 +2826
============================================
+ Hits 82274 96782 +14508
- Misses 44911 47881 +2970
- Partials 6048 7268 +1220
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
serverStats
is empty (MSQE) or not (SSQE).