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
|
// 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
|
||||||
|
|
|
@ -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)
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue