-
Notifications
You must be signed in to change notification settings - Fork 1.9k
feat: Implement disable_post_processing in /v1/sql #9331
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
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #9331 +/- ##
==========================================
- Coverage 83.76% 83.73% -0.03%
==========================================
Files 229 229
Lines 82697 82538 -159
==========================================
- Hits 69268 69117 -151
+ Misses 13429 13421 -8
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
13d8185
to
02c0bab
Compare
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.
👍🏻 LGTM!
@@ -330,6 +330,7 @@ class ApiGateway { | |||
if (req.query.format === 'sql') { | |||
await this.sql4sql({ | |||
query: req.query.query, | |||
disablePostProcessing: req.query.disable_post_processing === 'true', |
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 see that we have disable_post_processing
in snake-case defined in the docs... But in other places we have CamelCase.... Maybe we can review and align it?
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.
+1 for camelCase.
I assume we need to follow the style we used previously, and it should be camelCase.
cC @igorlukanin
ee598bb
to
a39ba8a
Compare
Check List
Description of Changes Made (if issue reference is not provided)
Second part of #9301