This commit is contained in:
slene 2013-11-18 13:21:19 +08:00
parent c5eabcf469
commit 16352579f3
2 changed files with 4 additions and 4 deletions

View File

@ -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)
}

View File

@ -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