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