Skip to main content

duckdb_config_option_set_default_value

Function duckdb_config_option_set_default_value 

Source
pub unsafe extern "C" fn duckdb_config_option_set_default_value(
    option: duckdb_config_option,
    default_value: duckdb_value,
)
Expand description

Sets the default value of the configuration option. If the type of this option has already been set with duckdb_config_option_set_type, the value is cast to the type. Otherwise, the type is inferred from the value.

@param option The configuration option instance. @param default_value The default value to set.