-
Notifications
You must be signed in to change notification settings - Fork 14k
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
feat: Remove legacy sql alchemy db connection link from G Sheet connection #19450
feat: Remove legacy sql alchemy db connection link from G Sheet connection #19450
Conversation
Codecov Report
@@ Coverage Diff @@
## master #19450 +/- ##
=======================================
Coverage 66.49% 66.49%
=======================================
Files 1681 1681
Lines 64370 64372 +2
Branches 6583 6584 +1
=======================================
+ Hits 42803 42805 +2
Misses 19886 19886
Partials 1681 1681
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
)} | ||
viewBox="0 -6 24 24" | ||
/> | ||
{dbModel.name !== 'Google Sheets' && ( |
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.
can we check the engine against gsheets
instead?
It's done like that in the same file, so if we can, we should use the same checking method.
And probably move that gsheets
engine string to a constant.
…ction (apache#19450) * feat: Remove legacy sql alchemy db connection link from G Sheet connection * resolve comment
SUMMARY
When we add google sheet as a database, we still have legacy SQLAlchemy url connection method, which is not supported anymore.
So removed this from the GSheet connection.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
Before:
After:
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION