mirror of
https://github.com/MariaDB/server.git
synced 2025-02-04 12:52:17 +01:00
1ac8149b83
mysqlslap has an unusual semantics of the --iterations option, so that $ mysqlslap --concurrency=16 --iterations=1000 performs 16,000 connections. Because of that it gets many times slower with --ssl Let's disable ssl for mysqlslap in mysql-test
28 lines
594 B
INI
28 lines
594 B
INI
#
|
|
# We use default-character-set=latin1 to avoid character set auto-detection
|
|
# when running tests - not to depend on the current machine localization.
|
|
#
|
|
|
|
[mysql]
|
|
default-character-set=latin1
|
|
|
|
[mysqlshow]
|
|
default-character-set=latin1
|
|
|
|
[mysqlimport]
|
|
default-character-set=latin1
|
|
|
|
[mysqlcheck]
|
|
default-character-set=latin1
|
|
|
|
[mysql_upgrade]
|
|
default-character-set=latin1
|
|
|
|
[mysqlslap]
|
|
loose-skip-ssl
|
|
|
|
[mysqltest]
|
|
loose-ssl-ca=@ENV.MYSQL_TEST_DIR/std_data/cacert.pem
|
|
loose-ssl-cert=@ENV.MYSQL_TEST_DIR/std_data/client-cert.pem
|
|
loose-ssl-key=@ENV.MYSQL_TEST_DIR/std_data/client-key.pem
|
|
loose-skip-ssl
|