It's OK for a report query to be empty
It's always possible the user only specified a display predicate.
This commit is contained in:
parent
93b8f3fe54
commit
e27ba3e1ff
2 changed files with 20 additions and 28 deletions
|
|
@ -184,14 +184,12 @@ value_t args_command(call_scope_t& args)
|
|||
out << std::endl << std::endl;
|
||||
|
||||
query_t query(args.value(), report.what_to_keep());
|
||||
if (! query)
|
||||
throw_(std::runtime_error,
|
||||
_("Invalid query predicate: %1") << join_args(args));
|
||||
if (query) {
|
||||
call_scope_t sub_args(static_cast<scope_t&>(args));
|
||||
sub_args.push_back(string_value(query.text()));
|
||||
|
||||
call_scope_t sub_args(static_cast<scope_t&>(args));
|
||||
sub_args.push_back(string_value(query.text()));
|
||||
|
||||
parse_command(sub_args);
|
||||
parse_command(sub_args);
|
||||
}
|
||||
|
||||
if (query.tokens_remaining()) {
|
||||
out << std::endl << _("====== Display predicate ======")
|
||||
|
|
@ -199,14 +197,12 @@ value_t args_command(call_scope_t& args)
|
|||
|
||||
query.parse_again();
|
||||
|
||||
if (! query)
|
||||
throw_(std::runtime_error,
|
||||
_("Invalid display predicate: %1") << join_args(args));
|
||||
if (query) {
|
||||
call_scope_t disp_sub_args(static_cast<scope_t&>(args));
|
||||
disp_sub_args.push_back(string_value(query.text()));
|
||||
|
||||
call_scope_t disp_sub_args(static_cast<scope_t&>(args));
|
||||
disp_sub_args.push_back(string_value(query.text()));
|
||||
|
||||
parse_command(disp_sub_args);
|
||||
parse_command(disp_sub_args);
|
||||
}
|
||||
}
|
||||
|
||||
return NULL_VALUE;
|
||||
|
|
|
|||
|
|
@ -222,25 +222,21 @@ void report_t::normalize_options(const string& verb)
|
|||
void report_t::parse_query_args(const value_t& args, const string& whence)
|
||||
{
|
||||
query_t query(args, what_to_keep());
|
||||
if (! query)
|
||||
throw_(std::runtime_error,
|
||||
_("Invalid query predicate: %1") << query.text());
|
||||
if (query) {
|
||||
HANDLER(limit_).on(whence, query.text());
|
||||
|
||||
HANDLER(limit_).on(whence, query.text());
|
||||
|
||||
DEBUG("report.predicate",
|
||||
"Predicate = " << HANDLER(limit_).str());
|
||||
DEBUG("report.predicate",
|
||||
"Predicate = " << HANDLER(limit_).str());
|
||||
}
|
||||
|
||||
if (query.tokens_remaining()) {
|
||||
query.parse_again();
|
||||
if (! query)
|
||||
throw_(std::runtime_error,
|
||||
_("Invalid display predicate: %1") << query.text());
|
||||
if (query) {
|
||||
HANDLER(display_).on(whence, query.text());
|
||||
|
||||
HANDLER(display_).on(whence, query.text());
|
||||
|
||||
DEBUG("report.predicate",
|
||||
"Display predicate = " << HANDLER(display_).str());
|
||||
DEBUG("report.predicate",
|
||||
"Display predicate = " << HANDLER(display_).str());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue