Home
last modified time | relevance | path

Searched refs:fakeDB (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/database/sql/
Dfakedb_test.go53 dbs map[string]*fakeDB
91 type fakeDB struct { struct
136 db *fakeDB // where to return ourselves to
281 func (d *fakeDriver) getDB(name string) *fakeDB {
285 d.dbs = make(map[string]*fakeDB)
289 db = &fakeDB{name: name}
295 func (db *fakeDB) wipe() { argument
301 func (db *fakeDB) createTable(name string, columnNames, columnTypes []string) error { argument
319 func (db *fakeDB) table(table string) (*table, bool) { argument
327 func (db *fakeDB) columnType(table, column string) (typ string, ok bool) { argument
[all …]