Fix bug
This commit is contained in:
parent
04e6027f52
commit
362f0c4112
|
@ -47,7 +47,6 @@ func (s *QuoteFilter) Do(sql string) string {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return buf.String()
|
return buf.String()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// SeqFilter filter SQL replace ?, ? ... to $1, $2 ...
|
// SeqFilter filter SQL replace ?, ? ... to $1, $2 ...
|
||||||
|
@ -72,7 +71,6 @@ func convertQuestionMark(sql, prefix string, start int) string {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return buf.String()
|
return buf.String()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SeqFilter) Do(sql string) string {
|
func (s *SeqFilter) Do(sql string) string {
|
||||||
|
|
|
@ -210,7 +210,6 @@ var (
|
||||||
|
|
||||||
type mssql struct {
|
type mssql struct {
|
||||||
Base
|
Base
|
||||||
quoter schemas.Quoter
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (db *mssql) Init(d *core.DB, uri *URI) error {
|
func (db *mssql) Init(d *core.DB, uri *URI) error {
|
||||||
|
|
Loading…
Reference in New Issue