Mock pooler for testing
| 85 | |
| 86 | // Mock pooler for testing |
| 87 | type mockPooler struct{} |
| 88 | |
| 89 | func (m *mockPooler) NewConn(ctx context.Context) (*pool.Conn, error) { return nil, nil } |
| 90 | func (m *mockPooler) CloseConn(context.Context, *pool.Conn, string, string) error { return nil } |
nothing calls this directly
no outgoing calls
no test coverage detected