16352579 by slene

#294

1 parent c5eabcf4
...@@ -1304,6 +1304,10 @@ func (d *dbBase) GetColumns(db dbQuerier, table string) (map[string][3]string, e ...@@ -1304,6 +1304,10 @@ func (d *dbBase) GetColumns(db dbQuerier, table string) (map[string][3]string, e
1304 return columns, nil 1304 return columns, nil
1305 } 1305 }
1306 1306
1307 func (d *dbBase) OperatorSql(operator string) string {
1308 panic(ErrNotImplement)
1309 }
1310
1307 func (d *dbBase) ShowTablesQuery() string { 1311 func (d *dbBase) ShowTablesQuery() string {
1308 panic(ErrNotImplement) 1312 panic(ErrNotImplement)
1309 } 1313 }
......
...@@ -6,10 +6,6 @@ type dbBaseOracle struct { ...@@ -6,10 +6,6 @@ type dbBaseOracle struct {
6 6
7 var _ dbBaser = new(dbBaseOracle) 7 var _ dbBaser = new(dbBaseOracle)
8 8
9 func (d *dbBase) OperatorSql(operator string) string {
10 return ""
11 }
12
13 func newdbBaseOracle() dbBaser { 9 func newdbBaseOracle() dbBaser {
14 b := new(dbBaseOracle) 10 b := new(dbBaseOracle)
15 b.ins = b 11 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!