mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 08:00:57 +00:00
This commit is contained in:
parent
c5eabcf469
commit
16352579f3
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user