Skip to content

Commit

Permalink
Fix to creating output DB table 'aggregating_functions'
Browse files Browse the repository at this point in the history
  • Loading branch information
dschlaep committed Sep 14, 2016
1 parent d8dedcb commit 1b3da13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 2_SWSF_p2of5_CreateDB_Tables_v51.R
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ if (length(Tables) == 0 || cleanDB) {
RSQLite::dbGetQuery(con, "CREATE TABLE aggregating_functions(id INTEGER PRIMARY KEY AUTOINCREMENT, agg_fun TEXT UNIQUE NOT NULL, type TEXT);")
RSQLite::dbBegin(con)
RSQLite::dbGetPreparedQuery(con, "INSERT INTO aggregating_functions VALUES(NULL, :agg_fun, :type);",
bind.data = agg_fun_defs))
bind.data = agg_fun_defs)
RSQLite::dbCommit(con)
##################################################

Expand Down

0 comments on commit 1b3da13

Please sign in to comment.