Amazon Athena JDBC Driver Wrapper Supporting the 'metis' Package
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

15 satır
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]
}