You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I connect to a lot of different postgres databases, so I find it useful to use the pg_service.conf file.
src_postgres doesn't accept service as one of the ... arguments. I looked into it and it appears it's because the driver is created using RPostgreSQL::PostgreSQL(), whereas if it was using RPostgres::Postgres() instead it would accept the service argument. Here's the line I'm referring to.
I don't know much about how solid the RPostgres package is, so maybe the fix isn't as simple as changing the function call for the driver but perhaps we can discuss here.
The text was updated successfully, but these errors were encountered:
You should be able to create your own private version of src_postgres(). Unfortunately, it will probably take some time until RPostgres hits CRAN; dplyr might switch to using RPostgres then.
I connect to a lot of different postgres databases, so I find it useful to use the pg_service.conf file.
src_postgres
doesn't accept service as one of the...
arguments. I looked into it and it appears it's because the driver is created usingRPostgreSQL::PostgreSQL()
, whereas if it was usingRPostgres::Postgres()
instead it would accept the service argument. Here's the line I'm referring to.I don't know much about how solid the RPostgres package is, so maybe the fix isn't as simple as changing the function call for the driver but perhaps we can discuss here.
The text was updated successfully, but these errors were encountered: