MCPcopy Create free account
hub / github.com/apache/datafusion / sorted_config_entries

Function sorted_config_entries

datafusion/physical-expr/src/scalar_function.rs:221–225  ·  view source on GitHub ↗
(config_options: &ConfigOptions)

Source from the content-addressed store, hash-verified

219}
220
221fn 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
227impl PhysicalExpr for ScalarFunctionExpr {
228 fn data_type(&self, _input_schema: &Schema) -> Result<DataType> {

Callers 1

eqMethod · 0.70

Calls 3

entriesMethod · 0.45
sort_byMethod · 0.45
cmpMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…