Open gowthamrao opened 1 month ago
Andromeda::isAndromedaTable(dplyr::tibble()) [1] FALSE Warning message: Unknown or uninitialised column: `src`.
has no problems with data.frame
Andromeda::isAndromedaTable(data.frame()) [1] FALSE
but checks for tibble (tbl)
function (tbl) { return(inherits(tbl, "tbl") && inherits(dbplyr::remote_con(tbl), "Andromeda")) }
has no problems with data.frame
but checks for tibble (tbl)