-
Notifications
You must be signed in to change notification settings - Fork 609
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(duckdb): add support for read_mysql #8656
Conversation
ncclementi
commented
Mar 14, 2024
- Closes feat(duckdb): add support for reading tables from MySQL #8109
Well looks like we triggered the Locally I noticed that if I use E pymysql.err.OperationalError: (2003, "Can't connect to MySQL server
on 'localhost' ([Errno 111] Connection refused)")
../../../.cache/pypoetry/virtualenvs/ibis-framework-2c2VoWo5-py3.9/lib/python3.9/site-packages/pymysql
connections.py:711: OperationalError |
I opened duckdb/duckdb-mysql#44 to track the localhost issue. |
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!
So, this was fixed duckdb/duckdb-mysql#44, but we can't use it unless we install the extension from the nightlies, so we'll have to wait a bit. |
…ite (#8829) In #8656 we made the args for `read_mysql` required-keyword. This PR, makes the args for `read_postgres` and `read_sqlite` to be required-keyword to be consistent. It also fixes a broken test that runs only locally, `test_read_postgres` (thanks @gforsyth for the patch suggestion). - Closes #8712