Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MIRACUM
labor
labVisualizeR
Commits
ac053943
Commit
ac053943
authored
4 years ago
by
Lorenz Kapsner
Browse files
Options
Download
Email Patches
Plain Diff
fixed bug when querying sqls from json
parent
0dba665b
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
DESCRIPTION
+1
-0
DESCRIPTION
R/load_sql.R
+1
-1
R/load_sql.R
with
2 additions
and
1 deletion
+2
-1
DESCRIPTION
+
1
-
0
View file @
ac053943
...
...
@@ -42,3 +42,4 @@ Remotes:
Date/Publication: 2020-04-14 13:17:38 UTC
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.1.0
This diff is collapsed.
Click to expand it.
R/load_sql.R
+
1
-
1
View file @
ac053943
...
...
@@ -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
)
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help