(query string, args ...interface{})
| 248 | type queryObject interface { |
| 249 | QueryRow(query string, args ...interface{}) *sql.Row |
| 250 | Query(query string, args ...interface{}) (*sql.Rows, error) |
| 251 | } |
| 252 | |
| 253 | // Common logic for KeyValue.Find and batchTx.Find. |
no outgoing calls
no test coverage detected