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 b0a36ed commit 8986b33Copy full SHA for 8986b33
src/ast/mod.rs
@@ -3316,18 +3316,17 @@ impl fmt::Display for Statement {
3316
3317
if *query_plan {
3318
write!(f, "QUERY PLAN ")?;
3319
- } else {
3320
- if *analyze {
3321
- write!(f, "ANALYZE ")?;
3322
- }
+ }
+ if *analyze {
+ write!(f, "ANALYZE ")?;
3323
3324
- if *verbose {
3325
- write!(f, "VERBOSE ")?;
3326
+ if *verbose {
+ write!(f, "VERBOSE ")?;
3327
3328
- if let Some(format) = format {
3329
- write!(f, "FORMAT {format} ")?;
3330
+ if let Some(format) = format {
+ write!(f, "FORMAT {format} ")?;
3331
}
3332
3333
if let Some(options) = options {
0 commit comments