14 lines
142 B
Go
14 lines
142 B
Go
package gorm
|
|
|
|
type tidb struct {
|
|
mysql
|
|
}
|
|
|
|
func init() {
|
|
RegisterDialect("tidb", &tidb{})
|
|
}
|
|
|
|
func (tidb) GetName() string {
|
|
return "tidb"
|
|
}
|