You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@colearendt noted that we pull in some databases that R packages don't actually need, such as MySQL and MongoDB. Packages typically only need the client library.
We have separate rules for the MySQL server and client library:
We should fix the patterns so that only the client libraries are pulled in when required, and only the servers are pulled in when required. Or remove the rules if the packages aren't actually required.
@colearendt noted that we pull in some databases that R packages don't actually need, such as MySQL and MongoDB. Packages typically only need the client library.
We have separate rules for the MySQL server and client library:
But the MySQL Server rule has some false positive matches, like:
(
\bmysql\b
matchesmysql-connector-c
).We should fix the patterns so that only the client libraries are pulled in when required, and only the servers are pulled in when required. Or remove the rules if the packages aren't actually required.
Packages that require MySQL:
Packages that require MongoDB:
The text was updated successfully, but these errors were encountered: