remove ErrUnsupported and fixes

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2023-02-17 23:54:50 +03:00
parent 38a14743de
commit 47101ab87f
5 changed files with 14 additions and 19 deletions

View File

@@ -32,5 +32,5 @@ func (w *wrapperDriver) Open(name string) (driver.Conn, error) {
return nil, err
}
return &wrapperConn{conn: c, opts: w.opts, ctx: w.ctx}, nil
return &wrapperConn{d: w, dname: name, conn: c, opts: w.opts, ctx: w.ctx}, nil
}