Merge pull request #526 from OHDSI/use-sqlrenderr-supported-dialects

use the sqlrender function for supported dialects
This commit is contained in:
clairblacketer 2023-07-21 12:02:53 -04:00 committed by GitHub
commit 8c18f01274
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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)
} }