File size: 380 Bytes
530729e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
package dialect
type oceanbase struct {
commonDialect
}
func (oceanbase) GetName() string {
return "oceanbase"
}
func (oceanbase) ShowColumnsWithComment(schema, table string) string {
return "show columns in " + table
}
func (oceanbase) ShowColumns(table string) string {
return "show columns in " + table
}
func (oceanbase) ShowTables() string {
return "show tables"
}
|