Merge pull request #526 from OHDSI/use-sqlrenderr-supported-dialects
use the sqlrender function for supported dialects
This commit is contained in:
commit
8c18f01274
|
@ -12,6 +12,7 @@ listSupportedVersions <- function() {
|
||||||
#' @export
|
#' @export
|
||||||
|
|
||||||
listSupportedDialects <- function() {
|
listSupportedDialects <- function() {
|
||||||
supportedDialects <- c("oracle", "postgresql", "pdw", "redshift", "impala", "netezza", "bigquery", "sql server", "spark", "snowflake", "synapse")
|
sqlRenderSupportedDialects <- SqlRender::listSupportedDialects()
|
||||||
|
supportedDialects <- sqlRenderSupportedDialects$dialect
|
||||||
return(supportedDialects)
|
return(supportedDialects)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue