diff options
author | Jim Winstead <jimw@mysql.com> | 2009-05-07 10:28:29 -0700 |
---|---|---|
committer | Jim Winstead <jimw@mysql.com> | 2009-05-07 10:28:29 -0700 |
commit | 0ba8aa103e0057e1a61ee573a426224076250de4 (patch) | |
tree | c94ee96cb1af9d7f649af2be130726149438ff4d /mysql-test/t/mysql.test | |
parent | 975364adf3e74b83b7e565ab0d60adf04b25c54a (diff) | |
download | mariadb-git-0ba8aa103e0057e1a61ee573a426224076250de4.tar.gz |
Fix support for -i (--ignore-spaces) in the mysql command line application,
which didn't actually do anything. (Bug #39101)
Diffstat (limited to 'mysql-test/t/mysql.test')
-rw-r--r-- | mysql-test/t/mysql.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/t/mysql.test b/mysql-test/t/mysql.test index 12431e26596..0425b4b9022 100644 --- a/mysql-test/t/mysql.test +++ b/mysql-test/t/mysql.test @@ -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 |