-
Notifications
You must be signed in to change notification settings - Fork 0
/
delete.go
98 lines (81 loc) · 1.9 KB
/
delete.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
package tyr
import (
"strconv"
)
// DeleteStmt builds `DELETE ...`.
type DeleteStmt struct {
Dialect
raw
Table string
WhereCond []Builder
LimitCount int64
comments Comments
}
type DeleteBuilder = DeleteStmt
func (b *DeleteStmt) ToSQL(d Dialect, i Buffer) error {
builder := NewBuffer()
_ = b.Build(d, builder)
return interpolateSql(d, i, builder.String(), builder.Value())
}
func (b *DeleteStmt) Build(d Dialect, buf Buffer) error {
if b.raw.Query != "" {
return b.raw.Build(d, buf)
}
if b.Table == "" {
return ErrTableNotSpecified
}
err := b.comments.Build(d, buf)
if err != nil {
return err
}
_, _ = buf.WriteString("DELETE FROM ")
_, _ = buf.WriteString(d.QuoteIdent(b.Table))
if len(b.WhereCond) > 0 {
_, _ = buf.WriteString(" WHERE ")
err := And(b.WhereCond...).Build(d, buf)
if err != nil {
return err
}
}
if b.LimitCount >= 0 {
_, _ = buf.WriteString(" LIMIT ")
_, _ = buf.WriteString(strconv.FormatInt(b.LimitCount, 10))
}
return nil
}
// DeleteFrom creates a DeleteStmt.
func DeleteFrom(table string) *DeleteStmt {
return &DeleteStmt{
Table: table,
LimitCount: -1,
}
}
// DeleteBySql creates a DeleteStmt from raw query.
func DeleteBySql(query string, value ...interface{}) *DeleteStmt {
return &DeleteStmt{
raw: raw{
Query: query,
Value: value,
},
LimitCount: -1,
}
}
// Where adds a where condition.
// query can be Builder or string. value is used only if query type is string.
func (b *DeleteStmt) Where(query interface{}, value ...interface{}) *DeleteStmt {
switch query := query.(type) {
case string:
b.WhereCond = append(b.WhereCond, Expr(query, value...))
case Builder:
b.WhereCond = append(b.WhereCond, query)
}
return b
}
func (b *DeleteStmt) Limit(n uint64) *DeleteStmt {
b.LimitCount = int64(n)
return b
}
func (b *DeleteStmt) Comment(comment string) *DeleteStmt {
b.comments = b.comments.Append(comment)
return b
}