2021-08-18 18:24:45 +00:00
|
|
|
#' List CDM versions supported by this package
|
|
|
|
#'
|
2021-08-19 19:17:01 +00:00
|
|
|
#' @return A character vector containing the support CDM versions in {major}.{minor} format.
|
2021-08-18 19:30:04 +00:00
|
|
|
#' @export
|
2021-08-18 18:24:45 +00:00
|
|
|
listSupportedVersions <- function() {
|
2021-08-18 19:30:04 +00:00
|
|
|
supportedVersions <- c("5.3", "5.4")
|
2021-08-18 18:24:45 +00:00
|
|
|
return(supportedVersions)
|
|
|
|
}
|
2021-08-19 19:43:34 +00:00
|
|
|
|
|
|
|
#' List RDBMS dialects supported by this package
|
|
|
|
#'
|
|
|
|
#' @export
|
|
|
|
|
|
|
|
listSupportedDialects <- function() {
|
2022-10-11 21:22:14 +00:00
|
|
|
sqlRenderSupportedDialects <- SqlRender::listSupportedDialects()
|
|
|
|
supportedDialects <- sqlRenderSupportedDialects$dialect
|
2021-08-19 19:43:34 +00:00
|
|
|
return(supportedDialects)
|
|
|
|
}
|