admin / modules /db /dialect /oceanbase.go
AZLABS's picture
Upload folder using huggingface_hub
530729e verified
raw
history blame contribute delete
380 Bytes
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"
}