mirror of https://github.com/VinGarcia/ksql.git
Minor refactor: remove the DB.driver field
parent
9f2ffa84f6
commit
0f2ce0a685
4
ksql.go
4
ksql.go
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
})
|
||||
|
||||
|
|
|
@ -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,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue