PostgresUpstream implements Upstream for PostgreSQL databases
| 52 | |
| 53 | // PostgresUpstream implements Upstream for PostgreSQL databases |
| 54 | type PostgresUpstream struct { |
| 55 | conn *connpostgres.PostgresConnector |
| 56 | secret []byte |
| 57 | pid uint32 |
| 58 | readOnly bool |
| 59 | } |
| 60 | |
| 61 | // NewPostgresUpstream creates a new PostgreSQL upstream connection |
| 62 | func NewPostgresUpstream( |
nothing calls this directly
no outgoing calls
no test coverage detected