Assign column defaults
(
mut self,
column_defaults: HashMap<String, Expr>,
)
| 116 | |
| 117 | /// Assign column defaults |
| 118 | pub fn with_column_defaults( |
| 119 | mut self, |
| 120 | column_defaults: HashMap<String, Expr>, |
| 121 | ) -> Self { |
| 122 | self.column_defaults = column_defaults; |
| 123 | self |
| 124 | } |
| 125 | |
| 126 | /// Specify an optional pre-known sort order(s). Must be `SortExpr`s. |
| 127 | /// |
no outgoing calls
no test coverage detected