Serialize column into a flat name string
(&self)
| 165 | |
| 166 | /// Serialize column into a flat name string |
| 167 | pub fn flat_name(&self) -> String { |
| 168 | match &self.relation { |
| 169 | Some(r) => format!("{}.{}", r, self.name), |
| 170 | None => self.name.clone(), |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | /// Serialize column into a quoted flat name string |
| 175 | pub fn quoted_flat_name(&self) -> String { |
no test coverage detected