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

Fix support for -i (--ignore-spaces) in the mysql command line application,

which didn't actually do anything. (Bug #39101)
This commit is contained in:
Jim Winstead
2009-05-07 10:28:29 -07:00
parent 975364adf3
commit 0ba8aa103e
3 changed files with 21 additions and 3 deletions

View File

@ -341,4 +341,11 @@ EOF
remove_file $MYSQLTEST_VARDIR/tmp/bug31060.sql;
#
# Bug #39101: client -i (--ignore-spaces) option does not seem to work
#
--exec $MYSQL -i -e "SELECT COUNT (*)"
--exec $MYSQL --ignore-spaces -e "SELECT COUNT (*)"
--exec $MYSQL -b -i -e "SELECT COUNT (*)"
--echo End of 5.0 tests