jgoday commented on a change in pull request #1330:
URL: https://github.com/apache/arrow-datafusion/pull/1330#discussion_r753271336



##########
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:
       You're right, in psql it's common to have on|off flags (case 
insensitive), should we do the same ?
   ```
   \x [on|off|auto]       toggle expanded output (currently off)
   ```




-- 
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: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to