|
With the fix for CONC-395, the mariadb_set_conf_option function replaces underscores ('') with dashes ('-') in configuration options prior to comparing the value to the conf_key values in the mariadb_defaults array.:
https://github.com/MariaDB/mariadb-connector-c/blob/a8bec1c68acf7a0d47c4c1755bbda829bf944120/libmariadb/mariadb_lib.c#L703
This most likely means that the keys that have underscores in their definition need to be converted to dashes. It looks like these are:
https://github.com/MariaDB/mariadb-connector-c/blob/a8bec1c68acf7a0d47c4c1755bbda829bf944120/libmariadb/mariadb_lib.c#L648
https://github.com/MariaDB/mariadb-connector-c/blob/a8bec1c68acf7a0d47c4c1755bbda829bf944120/libmariadb/mariadb_lib.c#L649
|