1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use crate::common::{FQName, WithItem};
use itertools::Itertools;
use std::fmt::{Display, Formatter};
#[derive(PartialEq, Debug, Clone)]
pub struct AlterMaterializedView {
pub name: FQName,
pub with_clause: Vec<WithItem>,
}
impl Display for AlterMaterializedView {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(
f,
"ALTER MATERIALIZED VIEW {}{}",
self.name,
if self.with_clause.is_empty() {
"".to_string()
} else {
format!(
" WITH {}",
self.with_clause.iter().map(|x| x.to_string()).join(" AND ")
)
}
)
}
}