Change this [`SqlServerColumnDesc`] to be represented as text in Materialize.
(&mut self)
| 343 | |
| 344 | /// Change this [`SqlServerColumnDesc`] to be represented as text in Materialize. |
| 345 | pub fn represent_as_text(&mut self) { |
| 346 | self.column_type = self |
| 347 | .column_type |
| 348 | .as_ref() |
| 349 | .map(|ct| SqlScalarType::String.nullable(ct.nullable)); |
| 350 | } |
| 351 | |
| 352 | /// Exclude this [`SqlServerColumnDesc`] from being replicated into Materialize. |
| 353 | pub fn exclude(&mut self) { |
no test coverage detected