| 724 | } |
| 725 | |
| 726 | int selectDb(client *c, int id) { |
| 727 | if (id < 0 || id >= cserver.dbnum) |
| 728 | return C_ERR; |
| 729 | c->db = g_pserver->db[id]; |
| 730 | return C_OK; |
| 731 | } |
| 732 | |
| 733 | long long dbTotalServerKeyCount() { |
| 734 | long long total = 0; |
no outgoing calls
no test coverage detected