MCPcopy Create free account
hub / github.com/MariaDB/server / json_norm_value_object_init

Function json_norm_value_object_init

strings/json_normalize.c:307–316  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

305
306
307int
308json_norm_value_object_init(struct json_norm_value *val)
309{
310 const size_t element_size= sizeof(struct json_norm_kv);
311 struct json_norm_object *obj= &val->value.object;
312
313 val->type= JSON_VALUE_OBJECT;
314
315 return json_norm_init_dynamic_array(element_size, &obj->kv_pairs);
316}
317
318
319int

Callers 1

json_norm_value_initFunction · 0.85

Calls 1

Tested by

no test coverage detected