Function
sorted_config_entries
(config_options: &ConfigOptions)
Source from the content-addressed store, hash-verified
| 219 | } |
| 220 | |
| 221 | fn sorted_config_entries(config_options: &ConfigOptions) -> Vec<ConfigEntry> { |
| 222 | let mut entries = config_options.entries(); |
| 223 | entries.sort_by(|l, r| l.key.cmp(&r.key)); |
| 224 | entries |
| 225 | } |
| 226 | |
| 227 | impl PhysicalExpr for ScalarFunctionExpr { |
| 228 | fn data_type(&self, _input_schema: &Schema) -> Result<DataType> { |
Tested by
no test coverage detected
Used in the wild real call sites across dependent graphs
searching dependent graphs…