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

Function json_norm_value_array_init

strings/json_normalize.c:319–328  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

317
318
319int
320json_norm_value_array_init(struct json_norm_value *val)
321{
322 const size_t element_size= sizeof(struct json_norm_value);
323 struct json_norm_array *array= &val->value.array;
324
325 val->type= JSON_VALUE_ARRAY;
326
327 return json_norm_init_dynamic_array(element_size, &array->values);
328}
329
330
331static int

Callers 1

json_norm_value_initFunction · 0.85

Calls 1

Tested by

no test coverage detected