rename sql-config-setters to set_raw_config*()

the rename is reasonable as the getter is called get_raw_config*()
and to make the functional difference to context.set|get_config() clearer.
This commit is contained in:
B. Petersen
2019-10-03 21:57:40 +02:00
committed by Floris Bruynooghe
parent 79b92727cc
commit 93f0f5ccae
8 changed files with 67 additions and 67 deletions

View File

@@ -122,7 +122,7 @@ fn poke_spec(context: &Context, spec: *const libc::c_char) -> libc::c_int {
real_spec = to_string(spec);
context
.sql
.set_config(context, "import_spec", Some(&real_spec))
.set_raw_config(context, "import_spec", Some(&real_spec))
.unwrap();
} else {
let rs = context.sql.get_raw_config(context, "import_spec");