Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
kongdd committed Dec 15, 2023
1 parent bb4f282 commit 0c4f943
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Generated by roxygen2: do not edit by hand

export(dbRemoveTables_like)
export(db_append)
export(db_info)
export(db_removeTablesLike)
export(dbase)
export(edit_db_config)
export(get_dbInfo)
Expand Down
2 changes: 1 addition & 1 deletion R/tool_dbase.R
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ db_append <- function(con, tbl, values) {
}

#' @export
dbRemoveTables_like <- function(con, pattern="dbplyr", del=TRUE) {
db_removeTablesLike <- function(con, pattern="dbplyr", del=TRUE) {
tbls_bad = dbListTables(con) %>% .[grep(pattern, .)]
# print(tbls_bad)
if (del) {
Expand Down

0 comments on commit 0c4f943

Please sign in to comment.