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 4a17153 commit 8701bc4Copy full SHA for 8701bc4
src/ast/mod.rs
@@ -7645,7 +7645,9 @@ impl fmt::Display for DuplicateTreatment {
7645
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
7646
#[cfg_attr(feature = "visitor", derive(Visit, VisitMut))]
7647
pub enum AnalyzeFormatKind {
7648
+ /// e.g. `EXPLAIN ANALYZE FORMAT JSON SELECT * FROM tbl`
7649
Keyword(AnalyzeFormat),
7650
+ /// e.g. `EXPLAIN ANALYZE FORMAT=JSON SELECT * FROM tbl`
7651
Assignment(AnalyzeFormat),
7652
}
7653
0 commit comments