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

Function fill_misc_data

plugin/feedback/utils.cc:421–430  ·  view source on GitHub ↗

Adds various bits of information to the I_S.FEEDBACK */

Source from the content-addressed store, hash-verified

419 Adds various bits of information to the I_S.FEEDBACK
420*/
421int fill_misc_data(THD *thd, TABLE_LIST *tables)
422{
423 TABLE *table= tables->table;
424
425 INSERT1("Cpu_count", (my_getncpus(), UNSIGNED));
426 INSERT1("Mem_total", (my_getphysmem(), UNSIGNED));
427 INSERT1("Now", (thd->query_start(), UNSIGNED));
428
429 return 0;
430}
431
432int fill_collation_statistics(THD *thd, TABLE_LIST *tables)
433{

Callers 1

fill_feedbackFunction · 0.85

Calls 3

my_getphysmemFunction · 0.85
query_startMethod · 0.80
my_getncpusFunction · 0.70

Tested by

no test coverage detected