mirror of
https://github.com/MariaDB/server.git
synced 2025-11-28 17:36:30 +03:00
the test tests whether short options work on the server command line
* remove 'show variables' for variables not affected by short options
* remove options, that are not short
* remove options, that cannot be tested from SQL
* in particular, -T12 doesn't affect the test output,
but cases ~30sec delay on shutdown
* use -W1 as -W2 is the default, so doesn't affect the test output
15 lines
353 B
Plaintext
15 lines
353 B
Plaintext
# Tests for PERFORMANCE_SCHEMA
|
|
# Check server start for short server start options
|
|
|
|
select 'Ok, the server started' as result;
|
|
|
|
# See the associated -master.opt file.
|
|
|
|
select @@SQL_MODE;
|
|
show global variables like 'sql_mode';
|
|
|
|
select @@character_set_server;
|
|
show global variables like 'character_set_system';
|
|
|
|
show global variables like 'log_warnings';
|