Merge branch 'stable-2.10'

* stable-2.10:
  SSH query command: Remove resume_sortkey query operator
  SSH query command: Add --start n option to skip n changes

Change-Id: I4ed4aae29d2cec46e9eb034d3ac19bb9c8079346
This commit is contained in:
David Pursehouse
2014-08-19 14:22:57 +09:00
3 changed files with 15 additions and 13 deletions

View File

@@ -85,6 +85,11 @@ class Query extends SshCommand {
processor.setIncludeSubmitRecords(on);
}
@Option(name = "--start", aliases = {"-S"}, usage = "Number of changes to skip")
void setStart(int start) {
processor.setStart(start);
}
@Argument(index = 0, required = true, multiValued = true, metaVar = "QUERY", usage = "Query to execute")
private List<String> query;