We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6579d49 commit 0da5b64Copy full SHA for 0da5b64
pkg/sql/parsers/tree/pitr.go
@@ -118,8 +118,6 @@ type CreatePitr struct {
118
119
PitrValue int64
120
PitrUnit string
121
-
122
- ExecLocation ExecLocation // 执行位置:EXEC_IN_FRONTEND 或 EXEC_IN_ENGINE
123
}
124
125
func (node *CreatePitr) Format(ctx *FmtCtx) {
@@ -153,10 +151,6 @@ func (node *CreatePitr) Format(ctx *FmtCtx) {
153
151
ctx.WriteString(fmt.Sprintf("%v ", node.PitrValue))
154
152
ctx.WriteString(" ")
155
ctx.WriteString(node.PitrUnit)
156
157
- if node.ExecLocation == EXEC_IN_ENGINE {
158
- ctx.WriteString(" in engine")
159
- }
160
161
162
func (node *CreatePitr) GetStatementType() string { return "Create PITR" }
0 commit comments