fix user
This commit is contained in:
parent
4400d300a5
commit
5e43c25acf
1 changed files with 24 additions and 24 deletions
|
|
@ -7,7 +7,7 @@
|
|||
query_metadata_table <- function(table = "single_builds") {
|
||||
con <- DBI::dbConnect(RPostgres::Postgres(),
|
||||
dbname = "build_metadata", host = "r-binaries.devxy.io",
|
||||
port = 15432, user = "arm_binaries", password = Sys.getenv("PGPASS")
|
||||
port = 15432, user = "r_binaries", password = Sys.getenv("PGPASS")
|
||||
)
|
||||
metadata <- tbl(con, table)
|
||||
return(metadata)
|
||||
|
|
@ -18,7 +18,7 @@ query_metadata_table <- function(table = "single_builds") {
|
|||
list_metadata_tables <- function() {
|
||||
con <- DBI::dbConnect(RPostgres::Postgres(),
|
||||
dbname = "build_metadata", host = "r-binaries.devxy.io",
|
||||
port = 15432, user = "arm_binaries", password = Sys.getenv("PGPASS")
|
||||
port = 15432, user = "r_binaries", password = Sys.getenv("PGPASS")
|
||||
)
|
||||
dbListTables(con)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue