mirror of
https://github.com/matrix-construct/construct
synced 2025-03-13 21:10:32 +01:00
modules/console: Add table detail to db column info cmd.
This commit is contained in:
parent
7755e61e9e
commit
d02bdfe436
1 changed files with 11 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue