Update this [`SqlServerTableDesc`] to represent the specified columns as text in Materialize.
(&mut self, text_columns: &BTreeSet<&str>)
| 103 | /// Update this [`SqlServerTableDesc`] to represent the specified columns |
| 104 | /// as text in Materialize. |
| 105 | pub fn apply_text_columns(&mut self, text_columns: &BTreeSet<&str>) { |
| 106 | for column in &mut self.columns { |
| 107 | if text_columns.contains(column.name.as_ref()) { |
| 108 | column.represent_as_text(); |
| 109 | } |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | /// Update this [`SqlServerTableDesc`] to exclude the specified columns from being |
| 114 | /// replicated into Materialize. |
no test coverage detected