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

Method set_bool

datafusion/execution/src/config.rs:167–169  ·  view source on GitHub ↗

Set a boolean configuration option

(self, key: &str, value: bool)

Source from the content-addressed store, hash-verified

165
166 /// Set a boolean configuration option
167 pub fn set_bool(self, key: &str, value: bool) -> Self {
168 self.set_str(key, &value.to_string())
169 }
170
171 /// Set a generic `u64` configuration option
172 pub fn set_u64(self, key: &str, value: u64) -> Self {

Callers 14

save_plansFunction · 0.80
run_benchmarkFunction · 0.80
make_session_stateFunction · 0.80
run_queryFunction · 0.80
use_var_providerFunction · 0.80
sort_merge_join_no_spillFunction · 0.80
sort_merge_join_spillFunction · 0.80

Calls 2

set_strMethod · 0.80
to_stringMethod · 0.45