Amazon Athena JDBC Driver Wrapper Supporting the 'metis' Package
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

15 líneas
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
)
)
}