-
Notifications
You must be signed in to change notification settings - Fork 14.7k
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
Remove unused methods from Presto #8350
Conversation
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.
Nice! Thanks for doing this.
@@ -157,7 +157,7 @@ def get_view_names( | |||
|
|||
if schema: | |||
sql = ( | |||
"SELECT table_name FROM information_schema.views" | |||
"SELECT table_name FROM information_schema.views " |
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.
Good catch
Codecov Report
@@ Coverage Diff @@
## master #8350 +/- ##
==========================================
+ Coverage 67.53% 67.58% +0.05%
==========================================
Files 447 447
Lines 22644 22510 -134
Branches 2363 2363
==========================================
- Hits 15292 15214 -78
+ Misses 7214 7158 -56
Partials 138 138
Continue to review full report at Codecov.
|
* Remove unused methods from Presto * Remove tests * Fix bug in PRESTO_SPLIT_VIEWS_FROM_TABLES * Fix lint
CATEGORY
Choose one
SUMMARY
#8233 greatly simplified the logic of Presto's
expand_data
method, leaving behind a bunch of unused methods. This PR removes them.BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TEST PLAN
Tested using Presto, everything works.
ADDITIONAL INFORMATION
REVIEWERS
@willbarrett @mistercrunch