16352579 by slene

#294

1 parent c5eabcf4
......@@ -1304,6 +1304,10 @@ func (d *dbBase) GetColumns(db dbQuerier, table string) (map[string][3]string, e
return columns, nil
}
func (d *dbBase) OperatorSql(operator string) string {
panic(ErrNotImplement)
}
func (d *dbBase) ShowTablesQuery() string {
panic(ErrNotImplement)
}
......
......@@ -6,10 +6,6 @@ type dbBaseOracle struct {
var _ dbBaser = new(dbBaseOracle)
func (d *dbBase) OperatorSql(operator string) string {
return ""
}
func newdbBaseOracle() dbBaser {
b := new(dbBaseOracle)
b.ins = b
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!