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 // interfacing with the "database/sql" package implementing
// the KSQL interface `ksql.Provider`. // the KSQL interface `ksql.Provider`.
type DB struct { type DB struct {
driver string
dialect Dialect dialect Dialect
db DBAdapter db DBAdapter
} }
@ -133,7 +132,6 @@ func NewWithAdapter(
return DB{ return DB{
dialect: dialect, dialect: dialect,
driver: dialectName,
db: db, db: db,
}, nil }, nil
} }
@ -463,7 +461,7 @@ func (c DB) Insert(
default: default:
// Unsupported drivers should be detected on the New() function, // Unsupported drivers should be detected on the New() function,
// So we don't expect the code to ever get into this default case. // 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 return err

View File

@ -27,7 +27,6 @@ func TestNewAdapterWith(t *testing.T) {
tt.AssertNoErr(t, err) tt.AssertNoErr(t, err)
tt.AssertEqual(t, db.dialect, supportedDialects[dialectName]) 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 { func newTestDB(db DBAdapter, driver string) DB {
return DB{ return DB{
driver: driver,
dialect: supportedDialects[driver], dialect: supportedDialects[driver],
db: db, db: db,
} }