Minor refactor: remove the DB.driver field

pull/34/head
Vinícius Garcia 2022-12-20 23:07:39 -03:00
parent 9f2ffa84f6
commit 0f2ce0a685
3 changed files with 1 additions and 5 deletions

View File

@ -30,7 +30,6 @@ func initializeQueryCache() map[string]*sync.Map {
// interfacing with the "database/sql" package implementing
// the KSQL interface `ksql.Provider`.
type DB struct {
driver string
dialect Dialect
db DBAdapter
}
@ -133,7 +132,6 @@ func NewWithAdapter(
return DB{
dialect: dialect,
driver: dialectName,
db: db,
}, nil
}
@ -463,7 +461,7 @@ func (c DB) Insert(
default:
// Unsupported drivers should be detected on the New() function,
// So we don't expect the code to ever get into this default case.
err = fmt.Errorf("code error: unsupported driver `%s`", c.driver)
err = fmt.Errorf("code error: unsupported driver `%s`", c.dialect.DriverName())
}
return err

View File

@ -27,7 +27,6 @@ func TestNewAdapterWith(t *testing.T) {
tt.AssertNoErr(t, err)
tt.AssertEqual(t, db.dialect, supportedDialects[dialectName])
tt.AssertEqual(t, db.driver, dialectName)
}
})

View File

@ -3577,7 +3577,6 @@ func createTables(driver string, connStr string) error {
func newTestDB(db DBAdapter, driver string) DB {
return DB{
driver: driver,
dialect: supportedDialects[driver],
db: db,
}