mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 16:22:35 +01:00
modules/console: Allow an all-column argument to db compact cmd.
This commit is contained in:
parent
8d6c7e3576
commit
a6bd8ec9aa
1 changed files with 18 additions and 8 deletions
|
@ -1467,11 +1467,6 @@ try
|
|||
return true;
|
||||
}
|
||||
|
||||
db::column column
|
||||
{
|
||||
database, colname
|
||||
};
|
||||
|
||||
const bool integer
|
||||
{
|
||||
begin? try_lex_cast<uint64_t>(begin) : false
|
||||
|
@ -1489,10 +1484,25 @@ try
|
|||
integer && end? byte_view<string_view>(integers[1]) : end,
|
||||
};
|
||||
|
||||
const auto compact_column{[&out, &database, &level, &range]
|
||||
(const string_view &colname)
|
||||
{
|
||||
db::column column
|
||||
{
|
||||
database, colname
|
||||
};
|
||||
|
||||
compact(column, range, level);
|
||||
|
||||
if(level > -2)
|
||||
compact(column, level);
|
||||
}};
|
||||
|
||||
if(colname != "*")
|
||||
compact_column(colname);
|
||||
else
|
||||
for(const auto &column : database.columns)
|
||||
compact_column(name(*column));
|
||||
|
||||
out << "done" << std::endl;
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue