-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rule schema key #48
base: develop
Are you sure you want to change the base?
rule schema key #48
Conversation
from Simon branch
implements ctor for 1-,2-,3-level split key chains [skip-ci]
cleanup and add missing
reworked it to behave more like an iterator
polymorphic Rule
related to PR #26
(unfortunate iterator)
undo catalogue from api, instead canonicalize request
added tidy()
options_.push_back( | ||
new SimpleOption<bool>("porcelain", | ||
"Streamlined and stable output. Useful as input for other tools or scripts." | ||
"Incompatible with options: location, timestamp, and length")); | ||
options_.push_back(new SimpleOption<bool>("json", "Output available fields in JSON form")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since you already updated the doc: This also needs to mention the interaction of --json
with --porcelain
and the resulting incompatibilities
fdb5::ListIterator list(const fdb5::FDBToolRequest& /* request */, const int level) override { | ||
counts_.list += 1; | ||
ASSERT(level == 3); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That seems odd, why take a param and assert its 3?
No description provided.