From 0c4f943ce008ed970ebf7ec34df3b453e239d1f3 Mon Sep 17 00:00:00 2001 From: Dongdong Kong Date: Fri, 15 Dec 2023 16:55:37 +0800 Subject: [PATCH] minor update --- NAMESPACE | 2 +- R/tool_dbase.R | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/NAMESPACE b/NAMESPACE index 39cdcea..335714c 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -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) diff --git a/R/tool_dbase.R b/R/tool_dbase.R index 25ef73c..1ad4d11 100644 --- a/R/tool_dbase.R +++ b/R/tool_dbase.R @@ -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) {