make range require the rows (#5710)

This commit is contained in:
pwygab
2022-06-04 14:48:01 +08:00
committed by GitHub
parent e5d38dcff6
commit fda456e469

View File

@ -17,7 +17,7 @@ impl Command for Range {
fn signature(&self) -> Signature { fn signature(&self) -> Signature {
Signature::build("range") Signature::build("range")
.optional( .required(
"rows", "rows",
SyntaxShape::Range, SyntaxShape::Range,
"range of rows to return: Eg) 4..7 (=> from 4 to 7)", "range of rows to return: Eg) 4..7 (=> from 4 to 7)",