1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

The mysql command line client ignored the --skip-column-names option

when used in conjunction with --vertical. (Bug #47147, patch by
Harrison Fisk)
This commit is contained in:
Jim Winstead
2009-09-21 15:20:14 -07:00
parent 5051100a1a
commit fecdb6a384
3 changed files with 15 additions and 4 deletions

View File

@ -401,5 +401,10 @@ insert into t1 values ('\0b\0');
--exec $MYSQL --xml test -e "select a from t1"
drop table t1;
--echo
--echo Bug #47147: mysql client option --skip-column-names does not apply to vertical output
--echo
--exec $MYSQL --skip-column-names --vertical test -e "select 1 as a"
--echo
--echo End of tests