We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am unable to unload the tidyverse namespaces after using dbplyr.
Did I find a bug in dbplyr? Does it unload correctly?
library(tidyverse) con <- DBI::dbConnect(RSQLite::SQLite(), ":memory:") copy_to(con, mtcars) DBI::dbDisconnect(con) unloadNamespace("tidylog") unloadNamespace("tidyr") unloadNamespace("purrr") unloadNamespace("tidyverse") unloadNamespace("ggplot2") unloadNamespace("readr") unloadNamespace("dbplyr") unloadNamespace("dplyr") unloadNamespace("tibble") unloadNamespace("stringr") unloadNamespace("forcats") unloadNamespace("magrittr") library(tidyverse)
results in:
Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : cyclic namespace dependency detected when loading ‘dplyr’, already loading ‘dbplyr’, ‘dplyr’, ‘ggplot2’
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am unable to unload the tidyverse namespaces after using dbplyr.
Did I find a bug in dbplyr? Does it unload correctly?
results in:
The text was updated successfully, but these errors were encountered: