summaryrefslogtreecommitdiff
path: root/vendor/github.com/go-pg/pg/v10/orm/composite_drop.go
blob: 2a169b07aaee62ae3205923ed82968450c617e24 (plain)
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
package orm

type DropCompositeOptions struct {
	IfExists bool
	Cascade  bool
}

type DropCompositeQuery struct {
	q   *Query
	opt *DropCompositeOptions
}

var (
	_ QueryAppender = (*DropCompositeQuery)(nil)
	_ QueryCommand  = (*DropCompositeQuery)(nil)
)

func NewDropCompositeQuery(q *Query, opt *DropCompositeOptions) *DropCompositeQuery {
	return &DropCompositeQuery{
		q:   q,
		opt: opt,
	}
}

func (q *DropCompositeQuery) String() string {
	b, err := q.AppendQuery(defaultFmter, nil)
	if err != nil {
		panic(err)
	}
	return string(b)
}

func (q *DropCompositeQuery) Operation() QueryOp {
	return DropCompositeOp
}

func (q *DropCompositeQuery) Clone() QueryCommand {
	return &DropCompositeQuery{
		q:   q.q.Clone(),
		opt: q.opt,
	}
}

func (q *DropCompositeQuery) Query() *Query {
	return q.q
}

func (q *DropCompositeQuery) AppendTemplate(b []byte) ([]byte, error) {
	return q.AppendQuery(dummyFormatter{}, b)
}

func (q *DropCompositeQuery) AppendQuery(fmter QueryFormatter, b []byte) ([]byte, error) {
	if q.q.stickyErr != nil {
		return nil, q.q.stickyErr
	}
	if q.q.tableModel == nil {
		return nil, errModelNil
	}

	b = append(b, "DROP TYPE "...)
	if q.opt != nil && q.opt.IfExists {
		b = append(b, "IF EXISTS "...)
	}
	b = append(b, q.q.tableModel.Table().Alias...)
	if q.opt != nil && q.opt.Cascade {
		b = append(b, " CASCADE"...)
	}

	return b, q.q.stickyErr
}