Commit ac053943 authored by Lorenz Kapsner's avatar Lorenz Kapsner
Browse files

fixed bug when querying sqls from json

parent 0dba665b
No related merge requests found
Showing with 2 additions and 1 deletion
+2 -1
......@@ -42,3 +42,4 @@ Remotes:
Date/Publication: 2020-04-14 13:17:38 UTC
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.1.0
......@@ -7,7 +7,7 @@
load_sql <- function(db_name, utils_path) {
# load json with sql-queries
sql <- jsonlite::fromJSON(
txt = paste0(utils_path, "/SQL/", db_name, "_sql.JSON")
txt = paste0(utils_path, "/SQL/", toupper(db_name), "_sql.JSON")
)
return(sql)
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment