Improve quote policy #1567

Merged
lunny merged 8 commits from lunny/quote_policy2 into master 2020-03-06 07:48:36 +00:00
2 changed files with 0 additions and 3 deletions
Showing only changes of commit 362f0c4112 - Show all commits

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 {