liukun4515 commented on a change in pull request #1330:
URL: https://github.com/apache/arrow-datafusion/pull/1330#discussion_r752818669
##########
File path: datafusion-cli/src/command.rs
##########
@@ -117,6 +121,7 @@ impl FromStr for Command {
("d", None) => Self::ListTables,
("d", Some(name)) => Self::DescribeTable(name.into()),
("?", None) => Self::Help,
+ ("quiet", Some(b)) => Self::QuietMode(b == "true" || b == "t"),
Review comment:
In the doc, we just accept true/false, i think this code is inconsistent
with the doc.
Maybe we should consider the lower/upper case.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]