(&self, f: &mut AstFormatter<W>)
| 40 | |
| 41 | impl AstDisplay for MaterializedViewOptionName { |
| 42 | fn fmt<W: fmt::Write>(&self, f: &mut AstFormatter<W>) { |
| 43 | match self { |
| 44 | MaterializedViewOptionName::AssertNotNull => f.write_str("ASSERT NOT NULL"), |
| 45 | MaterializedViewOptionName::PartitionBy => f.write_str("PARTITION BY"), |
| 46 | MaterializedViewOptionName::RetainHistory => f.write_str("RETAIN HISTORY"), |
| 47 | MaterializedViewOptionName::Refresh => f.write_str("REFRESH"), |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | impl WithOptionName for MaterializedViewOptionName { |
nothing calls this directly
no test coverage detected