Sets streaming table can be infinite.
(mut self, infinite: bool)
| 67 | |
| 68 | /// Sets streaming table can be infinite. |
| 69 | pub fn with_infinite_table(mut self, infinite: bool) -> Self { |
| 70 | self.infinite = infinite; |
| 71 | self |
| 72 | } |
| 73 | |
| 74 | /// Sets the existing ordering of streaming table. |
| 75 | pub fn with_sort_order(mut self, sort_order: Vec<SortExpr>) -> Self { |
no outgoing calls