mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 15:00:51 +01:00
modules/console: Add ability to query prop for all columns with "**" key.
This commit is contained in:
parent
f37176d698
commit
f0dc31d284
1 changed files with 27 additions and 8 deletions
|
@ -611,6 +611,7 @@ try
|
|||
*db::database::dbs.at(dbname)
|
||||
};
|
||||
|
||||
// Special branch for integer properties that RocksDB aggregates.
|
||||
if(colname == "*")
|
||||
{
|
||||
const uint64_t value
|
||||
|
@ -622,18 +623,36 @@ try
|
|||
return true;
|
||||
}
|
||||
|
||||
const db::column column
|
||||
const auto query{[&out, &database, &property]
|
||||
(const string_view &colname)
|
||||
{
|
||||
database, colname
|
||||
};
|
||||
const db::column column
|
||||
{
|
||||
database, colname
|
||||
};
|
||||
|
||||
const auto value
|
||||
const auto value
|
||||
{
|
||||
db::property<db::prop_map>(column, property)
|
||||
};
|
||||
|
||||
for(const auto &p : value)
|
||||
out << p.first << " : " << p.second << std::endl;
|
||||
}};
|
||||
|
||||
// Branch for querying the property for a single column
|
||||
if(colname != "**")
|
||||
{
|
||||
db::property<db::prop_map>(column, property)
|
||||
};
|
||||
query(colname);
|
||||
return true;
|
||||
}
|
||||
|
||||
for(const auto &p : value)
|
||||
out << p.first << " => " << p.second << std::endl;
|
||||
// Querying the property for all columns in a loop
|
||||
for(const auto &column_name : database.column_names)
|
||||
{
|
||||
out << std::setw(16) << std::right << column_name << " : ";
|
||||
query(column_name);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue