mirror of
https://github.com/MariaDB/server.git
synced 2025-07-20 10:24:14 +03:00
libmysqld/lib_sql.cc: error message moved to 'stmt' mysql-test/t/distinct.test: temporary disabled in embedded server mysql-test/t/mysqladmin.test: disabled in embedded server sql/sql_prepare.cc: superfluous #ifndef removed
35 lines
986 B
Plaintext
35 lines
986 B
Plaintext
# Embedded server doesn't support external clients
|
|
--source include/not_embedded.inc
|
|
#
|
|
# Test "mysqladmin ping"
|
|
#
|
|
|
|
--exec $MYSQLADMIN --no-defaults -S $MASTER_MYSOCK -P $MASTER_MYPORT -u root --password= ping 2>&1
|
|
|
|
|
|
#
|
|
# Bug#10608 mysqladmin breaks on "database" variable in my.cnf
|
|
#
|
|
|
|
# When mysqladmin finds database in .cnf file it shall fail
|
|
--write_file $MYSQLTEST_VARDIR/tmp/bug10608.cnf
|
|
[client]
|
|
database=db1
|
|
EOF
|
|
|
|
--replace_regex /\/.*mysqladmin/mysqladmin/
|
|
--error 7
|
|
--exec $MYSQLADMIN --defaults-file=$MYSQLTEST_VARDIR/tmp/bug10608.cnf -S $MASTER_MYSOCK -P $MASTER_MYPORT -u root --password= ping 2>&1
|
|
|
|
|
|
# When mysqladmin finds "loose-database" in .cnf file it shall print
|
|
# a warning and continue
|
|
--write_file $MYSQLTEST_VARDIR/tmp/bug10608.cnf
|
|
[client]
|
|
loose-database=db2
|
|
EOF
|
|
|
|
--replace_regex /Warning: .*mysqladmin/Warning: mysqladmin/
|
|
--exec $MYSQLADMIN --defaults-file=$MYSQLTEST_VARDIR/tmp/bug10608.cnf -S $MASTER_MYSOCK -P $MASTER_MYPORT -u root --password= ping 2>&1
|
|
|