MaxOpenConnections - Deprecated: use MaxConnections instead for consistency with pgxpool. Kept for backward compatibility and internally forwards to MaxConnections.
(size int)
| 10 | // MaxOpenConnections - Deprecated: use MaxConnections instead for consistency with pgxpool. |
| 11 | // Kept for backward compatibility and internally forwards to MaxConnections. |
| 12 | func MaxOpenConnections(size int) Option { |
| 13 | return MaxConnections(size) |
| 14 | } |
| 15 | |
| 16 | // MaxConnections - Defines maximum number of connections in the pool (maps to pgxpool MaxConns) |
| 17 | func MaxConnections(size int) Option { |