-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathplan_types.go
More file actions
50 lines (36 loc) · 1000 Bytes
/
plan_types.go
File metadata and controls
50 lines (36 loc) · 1000 Bytes
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
/*
* Radon
*
* Copyright 2018 The Radon Authors.
* Code is licensed under the GPLv3.
*
*/
package planner
// PlanType type.
type PlanType string
const (
// PlanTypeDDL enum.
PlanTypeDDL PlanType = "PlanTypeDDL"
// PlanTypeInsert enum.
PlanTypeInsert PlanType = "PlanTypeInsert"
// PlanTypeDelete enum.
PlanTypeDelete PlanType = "PlanTypeDelete"
// PlanTypeUpdate enum.
PlanTypeUpdate PlanType = "PlanTypeUpdate"
// PlanTypeSelect enum.
PlanTypeSelect PlanType = "PlanTypeSelect"
// PlanTypeOrderby enum.
PlanTypeOrderby PlanType = "PlanTypeOrderby"
// PlanTypeLimit enum.
PlanTypeLimit PlanType = "PlanTypeLimit"
// PlanTypeAggregate enum.
PlanTypeAggregate PlanType = "PlanTypeAggregate"
// PlanTypeJoin enum.
PlanTypeJoin PlanType = "PlanTypeJoin"
// PlanTypeDistinct enum.
PlanTypeDistinct PlanType = "PlanTypeDistinct"
// PlanTypeUnion enum.
PlanTypeUnion PlanType = "PlanTypeUnion"
// PlanTypeOthers enum.
PlanTypeOthers PlanType = "PlanTypeOthers"
)