Amazon Athena JDBC Driver Wrapper Supporting the 'metis' Package
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
278 B

#' Retrieve the fully-qualified path to the included Athena JAR file
#'
#' @export
#' @examples
#' metis_jar_path()
metis_jar_path <- function() {
list.files(
path = system.file("java", package = "metis.jars"),
pattern = "Ath.*jar$",
full.names = TRUE
)[1]
}