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

Method delete_row_values

storage/perfschema/table_setup_objects.cc:323–339  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

321}
322
323int table_setup_objects::delete_row_values(TABLE *table,
324 const unsigned char *buf,
325 Field **fields)
326{
327 assert(m_row_exists);
328
329 CHARSET_INFO *cs= &my_charset_utf8mb3_bin;
330 enum_object_type object_type= OBJECT_TYPE_TABLE;
331 String object_schema(m_row.m_schema_name, m_row.m_schema_name_length, cs);
332 String object_name(m_row.m_object_name, m_row.m_object_name_length, cs);
333
334 int result= delete_setup_object(object_type, &object_schema, &object_name);
335
336 if (result == 0)
337 result= update_derived_flags();
338 return result;
339}
340

Callers

nothing calls this directly

Calls 2

delete_setup_objectFunction · 0.85
update_derived_flagsFunction · 0.85

Tested by

no test coverage detected