18 lines
417 B
R
18 lines
417 B
R
#' List CDM versions supported by this package
|
|
#'
|
|
#' @export
|
|
|
|
listSupportedVersions <- function() {
|
|
supportedVersions <- c("5.3", "5.4")
|
|
return(supportedVersions)
|
|
}
|
|
|
|
#' List RDBMS dialects supported by this package
|
|
#'
|
|
#' @export
|
|
|
|
listSupportedDialects <- function() {
|
|
supportedDialects <- c("oracle", "postgresql", "pdw", "redshift", "impala", "netezza", "bigquery", "sql server")
|
|
return(supportedDialects)
|
|
}
|