mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 08:20:55 +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
|
return columns, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (d *dbBase) OperatorSql(operator string) string {
|
||||||
|
panic(ErrNotImplement)
|
||||||
|
}
|
||||||
|
|
||||||
func (d *dbBase) ShowTablesQuery() string {
|
func (d *dbBase) ShowTablesQuery() string {
|
||||||
panic(ErrNotImplement)
|
panic(ErrNotImplement)
|
||||||
}
|
}
|
||||||
|
@ -6,10 +6,6 @@ type dbBaseOracle struct {
|
|||||||
|
|
||||||
var _ dbBaser = new(dbBaseOracle)
|
var _ dbBaser = new(dbBaseOracle)
|
||||||
|
|
||||||
func (d *dbBase) OperatorSql(operator string) string {
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func newdbBaseOracle() dbBaser {
|
func newdbBaseOracle() dbBaser {
|
||||||
b := new(dbBaseOracle)
|
b := new(dbBaseOracle)
|
||||||
b.ins = b
|
b.ins = b
|
||||||
|
Loading…
Reference in New Issue
Block a user