(network, address string)
| 185 | } |
| 186 | |
| 187 | func (d dialer) Dial(network, address string) (net.Conn, error) { |
| 188 | return d.client.Dial(d.instance) |
| 189 | } |
| 190 | |
| 191 | func (d dialer) DialTimeout(network, address string, timeout time.Duration) (net.Conn, error) { |
| 192 | return nil, errors.New("gcppostgres: DialTimeout not supported") |
no outgoing calls