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
)
)
}