Sets the sort_by columns for output sorting
(mut self, sort_by: Vec<SortExpr>)
| 128 | |
| 129 | /// Sets the sort_by columns for output sorting |
| 130 | pub fn with_sort_by(mut self, sort_by: Vec<SortExpr>) -> Self { |
| 131 | self.sort_by = sort_by; |
| 132 | self |
| 133 | } |
| 134 | |
| 135 | /// Build the options HashMap to pass to CopyTo for sink configuration. |
| 136 | fn build_sink_options(&self) -> HashMap<String, String> { |
no outgoing calls