Get returns the statement description for sql. Returns nil if not found.
(sql string)
| 19 | type Cache interface { |
| 20 | // Get returns the statement description for sql. Returns nil if not found. |
| 21 | Get(sql string) *pgconn.StatementDescription |
| 22 | |
| 23 | // Put stores sd in the cache. Put panics if sd.SQL is "". Put does nothing if sd.SQL already exists in the cache. |
| 24 | Put(sd *pgconn.StatementDescription) |
no outgoing calls
no test coverage detected