type Redshift struct {
// The wrapped PostgreSQL driver.database.Driver
}
Redshift is a wrapper around the PostgreSQL driver which implements Redshift-specific behavior.
Currently, the only different behaviour is the lack of locking in Redshift. The (Un)Lock() method(s) have been overridden from the PostgreSQL adapter to simply return nil.
Open implements the database.Driver interface by parsing the URL, switching the scheme from "redshift" to "postgres", and delegating to the underlying PostgreSQL driver.