Auto vertical output lands in MySQL 6.0.4
Have you ever executed a query from the MySQL command line client only to find that the output wrapped and the result is unreadable? In the past you have to run the query again with \G instead of ; or \g to get it to display the output in a vertical mode. My feature in MySQL 6.0.4 fixes that. The auto-vertical-output option tells the command line client to display the results in vertical format if the results are going to be too wide to display horizontally. It does this without re-executing the query because MySQL passes the length of each column in the result set. If the client isn’t able to determine the width of the screen it will default to 80 chars.
April 21st, 2008 at 2:02 pm
[...] on April 21, 2008 Eric Bergen: Have you ever executed a query from the MySQL command line client only to find that the output [...]
April 21st, 2008 at 5:13 pm
Awesome!
April 22nd, 2008 at 11:36 pm
Nice!
April 24th, 2008 at 12:17 pm
Very nice, I’m considering setting this as default for my mysql clients.
One small addition however - I’d prefer if the explicit ‘\g’ hint could override the automatic output choice and force the the tabular form anyway…