Qualifies the column with the given table reference.
(&self, relation: TableReference)
| 320 | |
| 321 | /// Qualifies the column with the given table reference. |
| 322 | pub fn with_relation(&self, relation: TableReference) -> Self { |
| 323 | Self { |
| 324 | relation: Some(relation), |
| 325 | ..self.clone() |
| 326 | } |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | impl From<&str> for Column { |
no test coverage detected