#294
Showing
2 changed files
with
4 additions
and
4 deletions
| ... | @@ -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 | ... | ... |
-
Please register or sign in to post a comment