We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7e6055 commit 02a9c9fCopy full SHA for 02a9c9f
1 file changed
src/main/java/org/ohdsi/webapi/util/PreparedSqlRender.java
@@ -84,7 +84,7 @@ public static int getParameterLimit(Source source) {
84
returnVal = 990;
85
} else if (sourceDialect.equals(DBMSType.MS_SQL_SERVER.getOhdsiDB()) || sourceDialect.equals(DBMSType.PDW.getOhdsiDB())) {
86
returnVal = 2000;
87
- } else if (sourceDialect.equals(DBMSType.BIGQUERY.getOhdsiDB())) {
+ } else if (sourceDialect.equals(DBMSType.BIGQUERY.getOhdsiDB()) || sourceDialect.equals(DBMSType.SNOWFLAKE.getOhdsiDB())) {
88
returnVal = 10000;
89
}
90
return returnVal;
0 commit comments