We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 151336c commit a166fb1Copy full SHA for a166fb1
ast/misc.go
@@ -63,11 +63,12 @@ const (
63
RepeatableRead = "REPEATABLE-READ"
64
65
// Valid formats for explain statement.
66
- ExplainFormatROW = "row"
67
- ExplainFormatDOT = "dot"
68
- ExplainFormatHint = "hint"
69
- PumpType = "PUMP"
70
- DrainerType = "DRAINER"
+ ExplainFormatROW = "row"
+ ExplainFormatDOT = "dot"
+ ExplainFormatHint = "hint"
+ ExplainFormatTrace = "opt_trace"
+ PumpType = "PUMP"
71
+ DrainerType = "DRAINER"
72
)
73
74
// Transaction mode constants.
@@ -82,6 +83,7 @@ var (
82
83
ExplainFormatROW,
84
ExplainFormatDOT,
85
ExplainFormatHint,
86
+ ExplainFormatTrace,
87
}
88
89
0 commit comments