This commit is contained in:
Lunny Xiao 2020-03-01 23:06:04 +08:00
parent 04e6027f52
commit 362f0c4112
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
2 changed files with 0 additions and 3 deletions

View File

@ -47,7 +47,6 @@ func (s *QuoteFilter) Do(sql string) string {
}
}
return buf.String()
}
// SeqFilter filter SQL replace ?, ? ... to $1, $2 ...
@ -72,7 +71,6 @@ func convertQuestionMark(sql, prefix string, start int) string {
}
}
return buf.String()
}
func (s *SeqFilter) Do(sql string) string {

View File

@ -210,7 +210,6 @@ var (
type mssql struct {
Base
quoter schemas.Quoter
}
func (db *mssql) Init(d *core.DB, uri *URI) error {