0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-02 21:59:02 +02:00

modules/console: Add table detail to db column info cmd.

This commit is contained in:
Jason Volk 2018-10-21 10:27:53 -07:00
parent 7755e61e9e
commit d02bdfe436

View file

@ -2794,6 +2794,17 @@ try
property("rocksdb.num-running-flushes");
property("rocksdb.actual-delayed-write-rate");
property("rocksdb.is-write-stopped");
if(c)
{
const db::database::sst::info::vector v{c};
for(const auto &info : v)
{
out << std::endl;
_print_sst_info_full(out, info);
}
}
return true;
}
catch(const std::out_of_range &e)