Adds various bits of information to the I_S.FEEDBACK */
| 419 | Adds various bits of information to the I_S.FEEDBACK |
| 420 | */ |
| 421 | int 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 | |
| 432 | int fill_collation_statistics(THD *thd, TABLE_LIST *tables) |
| 433 | { |
no test coverage detected