Amazon Athena JDBC Driver Wrapper Supporting the 'metis' Package
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

15 строки
299 B

#' Retrieve the current supported type names in Athena
#'
#' @export
#' @examples
#' athena_supported_types()
athena_supported_types <- function() {
gsub(
"^AJ_|_TYPE_NAME$", "",
grep(
"^AJ_",
names(rJava::J("com.simba.athena.athena.AthenaTypes")),
value=TRUE
)
)
}