Calls function `schema`.`fname` with the given `args`, returning the result.
db_call_function(con, fname, args = NULL, schema = "timeseries")
RPostgres connection object.
character Name of the function to be called
list of function arguments. A single, unnested list.
character name of the database schema. Defaults to 'timeseries'
value of `dbGetQuery(con, "SELECT * FROM schema.fname($args)")$fname`
Args may be named to enable postgres to decide which candidate to choose in case of overloaded functions. If any args are named, all of them must be.