mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
19 lines
296 B
Go
19 lines
296 B
Go
|
package builder
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func (b *Builder) deleteWriteTo(w Writer) error {
|
||
|
if len(b.tableName) <= 0 {
|
||
|
return errors.New("no table indicated")
|
||
|
}
|
||
|
|
||
|
if _, err := fmt.Fprintf(w, "DELETE FROM %s WHERE ", b.tableName); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return b.cond.WriteTo(w)
|
||
|
}
|