golint standard (#4421)

This commit is contained in:
heyanfu 2021-05-31 10:08:06 +08:00 committed by GitHub
parent bcf2b385a4
commit 363f9b7863
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 4 deletions

View File

@ -57,12 +57,12 @@ type StatementModifier interface {
ModifyStatement(*Statement)
}
// Write write string
// WriteString write string
func (stmt *Statement) WriteString(str string) (int, error) {
return stmt.SQL.WriteString(str)
}
// Write write string
// WriteByte write byte
func (stmt *Statement) WriteByte(c byte) error {
return stmt.SQL.WriteByte(c)
}
@ -152,7 +152,7 @@ func (stmt *Statement) Quote(field interface{}) string {
return builder.String()
}
// Write write string
// AddVar add var
func (stmt *Statement) AddVar(writer clause.Writer, vars ...interface{}) {
for idx, v := range vars {
if idx > 0 {
@ -506,7 +506,6 @@ func (stmt *Statement) clone() *Statement {
return newStmt
}
// Helpers
// SetColumn set column's value
// stmt.SetColumn("Name", "jinzhu") // Hooks Method
// stmt.SetColumn("Name", "jinzhu", true) // Callbacks Method