1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::codegen::syntax_tree_pysql::{Name, NodeType};
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct TrimNode {
pub childs: Vec<NodeType>,
pub trim: String,
}
impl Name for TrimNode {
fn name() -> &'static str {
"trim"
}
}