Unused method receiver RVV-B0013
Bug risk
Major
5 months ago3 years old
Method receiver 'd' is not referenced in method's body, consider removing it
2175}
2176
2177// not implement.
2178func (d *dbBase) IndexExists(context.Context, dbQuerier, string, string) bool {2179	panic(ErrNotImplement)
2180}
2181
Method receiver 'd' is not referenced in method's body, consider removing it
2170}
2171
2172// not implement.
2173func (d *dbBase) ShowColumnsQuery(table string) string {2174	panic(ErrNotImplement)
2175}
2176
Method receiver 'd' is not referenced in method's body, consider removing it
2165}
2166
2167// not implement.
2168func (d *dbBase) ShowTablesQuery() string {2169	panic(ErrNotImplement)
2170}
2171
Method receiver 'd' is not referenced in method's body, consider removing it
2160}
2161
2162// not implement.
2163func (d *dbBase) OperatorSQL(operator string) string {2164	panic(ErrNotImplement)
2165}
2166
Method receiver 'd' is not referenced in method's body, consider removing it
2103}
2104
2105// DbTypes Get database types.
2106func (d *dbBase) DbTypes() map[string]string {2107	return nil
2108}
2109